修改dto
This commit is contained in:
parent
e1d14dfe48
commit
ddb7392b16
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +9,7 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class AllinpayRechargeDTO implements Serializable {
|
public class AllinpayRechargeDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -16,28 +18,4 @@ public class AllinpayRechargeDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "短信验证码")
|
@Schema(description = "短信验证码")
|
||||||
private String verificationCode;
|
private String verificationCode;
|
||||||
|
|
||||||
public String getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(String bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getVerificationCode() {
|
|
||||||
return verificationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVerificationCode(String verificationCode) {
|
|
||||||
this.verificationCode = verificationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AllinpayRechargeDTO{" +
|
|
||||||
"bizOrderNo='" + bizOrderNo + '\'' +
|
|
||||||
", verificationCode='" + verificationCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +10,7 @@ import java.io.Serializable;
|
|||||||
* 企业会员绑定对公户
|
* 企业会员绑定对公户
|
||||||
* @author LGH
|
* @author LGH
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class AllinpayShopBankCardDTO implements Serializable {
|
public class AllinpayShopBankCardDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -38,91 +40,4 @@ public class AllinpayShopBankCardDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "银行卡属性 0法人 1企业对公")
|
@Schema(description = "银行卡属性 0法人 1企业对公")
|
||||||
private Integer bankCardPro;
|
private Integer bankCardPro;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAccountNo() {
|
|
||||||
return accountNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccountNo(String accountNo) {
|
|
||||||
this.accountNo = accountNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParentBankName() {
|
|
||||||
return parentBankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParentBankName(String parentBankName) {
|
|
||||||
this.parentBankName = parentBankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCityNo() {
|
|
||||||
return bankCityNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCityNo(String bankCityNo) {
|
|
||||||
this.bankCityNo = bankCityNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUnionBank() {
|
|
||||||
return unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnionBank(String unionBank) {
|
|
||||||
this.unionBank = unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getBankCardPro() {
|
|
||||||
return bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardPro(Integer bankCardPro) {
|
|
||||||
this.bankCardPro = bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AllinpayShopBankCardDTO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", accountNo='" + accountNo + '\'' +
|
|
||||||
", parentBankName='" + parentBankName + '\'' +
|
|
||||||
", bankCityNo='" + bankCityNo + '\'' +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", unionBank='" + unionBank + '\'' +
|
|
||||||
", province='" + province + '\'' +
|
|
||||||
", city='" + city + '\'' +
|
|
||||||
", bankCardPro=" + bankCardPro +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* 通联商家提现申请
|
* 通联商家提现申请
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class AllinpayShopWithdrawCashDTO implements Serializable {
|
public class AllinpayShopWithdrawCashDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -24,46 +26,4 @@ public class AllinpayShopWithdrawCashDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "短信验证码")
|
@Schema(description = "短信验证码")
|
||||||
private String verificationCode;
|
private String verificationCode;
|
||||||
|
|
||||||
public String getBankCardNo() {
|
|
||||||
return bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardNo(String bankCardNo) {
|
|
||||||
this.bankCardNo = bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAmount() {
|
|
||||||
return amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmount(Long amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(String bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getVerificationCode() {
|
|
||||||
return verificationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVerificationCode(String verificationCode) {
|
|
||||||
this.verificationCode = verificationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AllinpayShopWithdrawCashDTO{" +
|
|
||||||
"bankCardNo='" + bankCardNo + '\'' +
|
|
||||||
", amount=" + amount +
|
|
||||||
", bizOrderNo='" + bizOrderNo + '\'' +
|
|
||||||
", verificationCode='" + verificationCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -14,6 +15,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "店铺审核列表参数")
|
@Schema(description = "店铺审核列表参数")
|
||||||
public class AuditingInfoDTO implements Serializable {
|
public class AuditingInfoDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
@ -43,82 +45,4 @@ public class AuditingInfoDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "店铺状态 (-1:已删除 0: 停业中 1:营业中 2:平台下线 3:开店申请待审核 4:店铺申请中 5:上线申请待审核)")
|
@Schema(description = "店铺状态 (-1:已删除 0: 停业中 1:营业中 2:平台下线 3:开店申请待审核 4:店铺申请中 5:上线申请待审核)")
|
||||||
private Integer shopStatus;
|
private Integer shopStatus;
|
||||||
|
|
||||||
public Long getShopAuditingId() {
|
|
||||||
return shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAuditingId(Long shopAuditingId) {
|
|
||||||
this.shopAuditingId = shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserName() {
|
|
||||||
return userName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserName(String userName) {
|
|
||||||
this.userName = userName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBeginTime() {
|
|
||||||
return beginTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBeginTime(Date beginTime) {
|
|
||||||
this.beginTime = beginTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AuditingInfoDTO{" +
|
|
||||||
"shopAuditingId=" + shopAuditingId +
|
|
||||||
", status=" + status +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", userName='" + userName + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", beginTime=" + beginTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/22
|
* @date 2020/9/22
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ChangeAccountDTO implements Serializable {
|
public class ChangeAccountDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,63 +38,4 @@ public class ChangeAccountDTO implements Serializable {
|
|||||||
@Schema(description = "手机号")
|
@Schema(description = "手机号")
|
||||||
private String phone;
|
private String phone;
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEmail() {
|
|
||||||
return email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEmail(String email) {
|
|
||||||
this.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ChangeAccountDTO{" +
|
|
||||||
"userId=" + userId +
|
|
||||||
", username='" + username + '\'' +
|
|
||||||
", password='" + password + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", email='" + email + '\'' +
|
|
||||||
", phone='" + phone + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class HotSearchDTO implements Serializable {
|
public class HotSearchDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,72 +38,5 @@ public class HotSearchDTO implements Serializable {
|
|||||||
@Schema(description = "1:商品热搜 2:店铺热搜")
|
@Schema(description = "1:商品热搜 2:店铺热搜")
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
public Long getHotSearchId() {
|
|
||||||
return hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHotSearchId(Long hotSearchId) {
|
|
||||||
this.hotSearchId = hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "HotSearchDTO{" +
|
|
||||||
"hotSearchId=" + hotSearchId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",content=" + content +
|
|
||||||
",seq=" + seq +
|
|
||||||
",status=" + status +
|
|
||||||
",title=" + title +
|
|
||||||
",type=" + type +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-24 16:38:32
|
* @date 2020-11-24 16:38:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class IndexImgDTO implements Serializable {
|
public class IndexImgDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -40,72 +42,5 @@ public class IndexImgDTO implements Serializable {
|
|||||||
@Schema(description = "图片类型 0:小程序 1:pc")
|
@Schema(description = "图片类型 0:小程序 1:pc")
|
||||||
private Integer imgType;
|
private Integer imgType;
|
||||||
|
|
||||||
public Long getImgId() {
|
|
||||||
return imgId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgId(Long imgId) {
|
|
||||||
this.imgId = imgId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImgUrl() {
|
|
||||||
return imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgUrl(String imgUrl) {
|
|
||||||
this.imgUrl = imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getImgType() {
|
|
||||||
return imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgType(Integer imgType) {
|
|
||||||
this.imgType = imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "IndexImgDTO{" +
|
|
||||||
"imgId=" + imgId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",imgUrl=" + imgUrl +
|
|
||||||
",status=" + status +
|
|
||||||
",seq=" + seq +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",imgType=" + imgType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -15,6 +16,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-25 17:57:56
|
* @date 2020-11-25 17:57:56
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class NoticeDTO implements Serializable {
|
public class NoticeDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -78,173 +80,5 @@ public class NoticeDTO implements Serializable {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date endTime;
|
private Date endTime;
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsLearning() {
|
|
||||||
return isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsLearning(Integer isLearning) {
|
|
||||||
this.isLearning = isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTypes() {
|
|
||||||
return types;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTypes(String types) {
|
|
||||||
this.types = types;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void setUserIds(String userIds) {
|
|
||||||
this.userIds = userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierIds(String supplierIds) {
|
|
||||||
this.supplierIds = supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsTop() {
|
|
||||||
return isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsTop(Integer isTop) {
|
|
||||||
this.isTop = isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPublishTime() {
|
|
||||||
return publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPublishTime(Date publishTime) {
|
|
||||||
this.publishTime = publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAccountId() {
|
|
||||||
return accountId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccountId(Long accountId) {
|
|
||||||
this.accountId = accountId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getImmediatelySend() {
|
|
||||||
return immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImmediatelySend(Integer immediatelySend) {
|
|
||||||
this.immediatelySend = immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getSendTime() {
|
|
||||||
return sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSendTime(Date sendTime) {
|
|
||||||
this.sendTime = sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMultiShopIds() {
|
|
||||||
return multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMultiShopIds(String multiShopIds) {
|
|
||||||
this.multiShopIds = multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserIds() {
|
|
||||||
return userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierIds() {
|
|
||||||
return supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "NoticeDTO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", title='" + title + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", immediatelySend=" + immediatelySend +
|
|
||||||
", sendTime=" + sendTime +
|
|
||||||
", type=" + type +
|
|
||||||
", types='" + types + '\'' +
|
|
||||||
", multiShopIds='" + multiShopIds + '\'' +
|
|
||||||
", userIds='" + userIds + '\'' +
|
|
||||||
", supplierIds='" + supplierIds + '\'' +
|
|
||||||
", accountId=" + accountId +
|
|
||||||
", status=" + status +
|
|
||||||
", isTop=" + isTop +
|
|
||||||
", publishTime=" + publishTime +
|
|
||||||
", isLearning=" + isLearning +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/5/21 14:07
|
* @Date 2021/5/21 14:07
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopAccountDTO implements Serializable {
|
public class ShopAccountDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -18,28 +20,4 @@ public class ShopAccountDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "店铺id")
|
@Schema(description = "店铺id")
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopAccountDTO{" +
|
|
||||||
"password='" + password + '\'' +
|
|
||||||
", shopId='" + shopId + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-01 17:10:35
|
* @date 2021-02-01 17:10:35
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopAuditingDTO implements Serializable {
|
public class ShopAuditingDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -43,57 +45,7 @@ public class ShopAuditingDTO implements Serializable {
|
|||||||
@Schema(description = "签约终止时间")
|
@Schema(description = "签约终止时间")
|
||||||
private Date contractEndTime;
|
private Date contractEndTime;
|
||||||
|
|
||||||
public Date getContractStartTime() {
|
|
||||||
return contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractStartTime(Date contractStartTime) {
|
|
||||||
this.contractStartTime = contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractEndTime() {
|
|
||||||
return contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractEndTime(Date contractEndTime) {
|
|
||||||
this.contractEndTime = contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopType() {
|
|
||||||
return shopType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopType(Integer shopType) {
|
|
||||||
this.shopType = shopType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopAuditingId() {
|
|
||||||
return shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAuditingId(Long shopAuditingId) {
|
|
||||||
this.shopAuditingId = shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
public void setAuditorId(Long auditorId) {
|
||||||
this.auditorId = auditorId;
|
this.auditorId = auditorId;
|
||||||
@ -115,18 +67,4 @@ public class ShopAuditingDTO implements Serializable {
|
|||||||
this.remarks = remarks;
|
this.remarks = remarks;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopAuditingDTO{" +
|
|
||||||
"shopAuditingId=" + shopAuditingId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", shopType=" + shopType +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", contractStartTime=" + contractStartTime +
|
|
||||||
", contractEndTime=" + contractEndTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/4/25 16:44
|
* @Date 2021/4/25 16:44
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopBankCardDTO implements Serializable {
|
public class ShopBankCardDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,108 +53,5 @@ public class ShopBankCardDTO implements Serializable {
|
|||||||
@Schema(description = "支付行号")
|
@Schema(description = "支付行号")
|
||||||
private String unionBank;
|
private String unionBank;
|
||||||
|
|
||||||
public Long getShopBankCardId() {
|
|
||||||
return shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardId(Long shopBankCardId) {
|
|
||||||
this.shopBankCardId = shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRecipientName() {
|
|
||||||
return recipientName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRecipientName(String recipientName) {
|
|
||||||
this.recipientName = recipientName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCardNo() {
|
|
||||||
return cardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCardNo(String cardNo) {
|
|
||||||
this.cardNo = cardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBranchName() {
|
|
||||||
return branchName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBranchName(String branchName) {
|
|
||||||
this.branchName = branchName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOpeningBank() {
|
|
||||||
return openingBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOpeningBank(String openingBank) {
|
|
||||||
this.openingBank = openingBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsDefault() {
|
|
||||||
return isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsDefault(Integer isDefault) {
|
|
||||||
this.isDefault = isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCardNo() {
|
|
||||||
return bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardNo(String bankCardNo) {
|
|
||||||
this.bankCardNo = bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getBankCardPro() {
|
|
||||||
return bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardPro(Integer bankCardPro) {
|
|
||||||
this.bankCardPro = bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUnionBank() {
|
|
||||||
return unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnionBank(String unionBank) {
|
|
||||||
this.unionBank = unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopBankCardDTO{" +
|
|
||||||
"shopBankCardId=" + shopBankCardId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", openingBank='" + openingBank + '\'' +
|
|
||||||
", recipientName='" + recipientName + '\'' +
|
|
||||||
", cardNo='" + cardNo + '\'' +
|
|
||||||
", branchName='" + branchName + '\'' +
|
|
||||||
", isDefault=" + isDefault +
|
|
||||||
", bankCardNo='" + bankCardNo + '\'' +
|
|
||||||
", bankCardPro=" + bankCardPro +
|
|
||||||
", unionBank=" + unionBank +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-02-23 14:41:42
|
* @date 2021-02-23 14:41:42
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCollectionDTO implements Serializable {
|
public class ShopCollectionDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,27 +23,5 @@ public class ShopCollectionDTO implements Serializable {
|
|||||||
@Schema(description = "店铺id")
|
@Schema(description = "店铺id")
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public Long getCollectionId() {
|
|
||||||
return collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionId(Long collectionId) {
|
|
||||||
this.collectionId = collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserCollectionShopVO{" +
|
|
||||||
"collectionId=" + collectionId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.Max;
|
import jakarta.validation.constraints.Max;
|
||||||
import jakarta.validation.constraints.Min;
|
import jakarta.validation.constraints.Min;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -16,7 +17,7 @@ import java.util.Date;
|
|||||||
* @author chiley
|
* @author chiley
|
||||||
* @date 2022/9/1 16:15
|
* @date 2022/9/1 16:15
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompanyAuditingDTO implements Serializable {
|
public class ShopCompanyAuditingDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -85,99 +86,5 @@ public class ShopCompanyAuditingDTO implements Serializable {
|
|||||||
this.remarks = remarks;
|
this.remarks = remarks;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getCompanyAuditingId() {
|
|
||||||
return companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCompanyAuditingId(Long companyAuditingId) {
|
|
||||||
this.companyAuditingId = companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCompanyId() {
|
|
||||||
return shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyId(Long shopCompanyId) {
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBeginTime() {
|
|
||||||
return beginTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBeginTime(Date beginTime) {
|
|
||||||
this.beginTime = beginTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompanyAuditingDTO{" +
|
|
||||||
"companyAuditingId=" + companyAuditingId +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopCompanyId=" + shopCompanyId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", status=" + status +
|
|
||||||
", beginTime=" + beginTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
import org.hibernate.validator.constraints.Length;
|
import org.hibernate.validator.constraints.Length;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -15,6 +16,7 @@ import java.util.Date;
|
|||||||
*
|
*
|
||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompanyDTO implements Serializable {
|
public class ShopCompanyDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -72,144 +74,5 @@ public class ShopCompanyDTO implements Serializable {
|
|||||||
@Schema(description = "身份证反面")
|
@Schema(description = "身份证反面")
|
||||||
private String identityCardLater;
|
private String identityCardLater;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCreditCode() {
|
|
||||||
return creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreditCode(String creditCode) {
|
|
||||||
this.creditCode = creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFirmName() {
|
|
||||||
return firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirmName(String firmName) {
|
|
||||||
this.firmName = firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getResidence() {
|
|
||||||
return residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setResidence(String residence) {
|
|
||||||
this.residence = residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRepresentative() {
|
|
||||||
return representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRepresentative(String representative) {
|
|
||||||
this.representative = representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalIds() {
|
|
||||||
return legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalIds(String legalIds) {
|
|
||||||
this.legalIds = legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalPhone() {
|
|
||||||
return legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalPhone(String legalPhone) {
|
|
||||||
this.legalPhone = legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getCapital() {
|
|
||||||
return capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCapital(Double capital) {
|
|
||||||
this.capital = capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getFoundTime() {
|
|
||||||
return foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFoundTime(Date foundTime) {
|
|
||||||
this.foundTime = foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessScope() {
|
|
||||||
return businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessScope(String businessScope) {
|
|
||||||
this.businessScope = businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessLicense() {
|
|
||||||
return businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessLicense(String businessLicense) {
|
|
||||||
this.businessLicense = businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardFront() {
|
|
||||||
return identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardFront(String identityCardFront) {
|
|
||||||
this.identityCardFront = identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardLater() {
|
|
||||||
return identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardLater(String identityCardLater) {
|
|
||||||
this.identityCardLater = identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompanyDTO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", creditCode='" + creditCode + '\'' +
|
|
||||||
", firmName='" + firmName + '\'' +
|
|
||||||
", residence='" + residence + '\'' +
|
|
||||||
", representative='" + representative + '\'' +
|
|
||||||
", legalIds='" + legalIds + '\'' +
|
|
||||||
", legalPhone='" + legalPhone + '\'' +
|
|
||||||
", capital=" + capital +
|
|
||||||
", foundTime=" + foundTime +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", businessScope='" + businessScope + '\'' +
|
|
||||||
", businessLicense='" + businessLicense + '\'' +
|
|
||||||
", identityCardFront='" + identityCardFront + '\'' +
|
|
||||||
", identityCardLater='" + identityCardLater + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import com.tmerclub.cloud.api.product.dto.BrandShopDTO;
|
import com.tmerclub.cloud.api.product.dto.BrandShopDTO;
|
||||||
import com.tmerclub.cloud.api.product.dto.CategoryShopDTO;
|
import com.tmerclub.cloud.api.product.dto.CategoryShopDTO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.List;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/7/9 15:23
|
* @Date 2021/7/9 15:23
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCreateInfoDTO implements Serializable {
|
public class ShopCreateInfoDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,72 +39,5 @@ public class ShopCreateInfoDTO implements Serializable {
|
|||||||
@Schema(description = "通联店铺银行卡")
|
@Schema(description = "通联店铺银行卡")
|
||||||
private AllinpayShopBankCardDTO allinpayShopBankCardDTO;
|
private AllinpayShopBankCardDTO allinpayShopBankCardDTO;
|
||||||
|
|
||||||
public ShopUserRegisterDTO getShopUserRegisterInfo() {
|
|
||||||
return shopUserRegisterInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopUserRegisterInfo(ShopUserRegisterDTO shopUserRegisterInfo) {
|
|
||||||
this.shopUserRegisterInfo = shopUserRegisterInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShopDetailDTO getShopDetail() {
|
|
||||||
return shopDetail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopDetail(ShopDetailDTO shopDetail) {
|
|
||||||
this.shopDetail = shopDetail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShopCompanyDTO getShopCompany() {
|
|
||||||
return shopCompany;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompany(ShopCompanyDTO shopCompany) {
|
|
||||||
this.shopCompany = shopCompany;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<CategoryShopDTO> getCategorySigningList() {
|
|
||||||
return categorySigningList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCategorySigningList(List<CategoryShopDTO> categorySigningList) {
|
|
||||||
this.categorySigningList = categorySigningList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<BrandShopDTO> getBrandSigningList() {
|
|
||||||
return brandSigningList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBrandSigningList(List<BrandShopDTO> brandSigningList) {
|
|
||||||
this.brandSigningList = brandSigningList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ShopBankCardDTO> getShopBankCardList() {
|
|
||||||
return shopBankCardList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardList(List<ShopBankCardDTO> shopBankCardList) {
|
|
||||||
this.shopBankCardList = shopBankCardList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AllinpayShopBankCardDTO getAllinpayShopBankCardDTO() {
|
|
||||||
return allinpayShopBankCardDTO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayShopBankCardDTO(AllinpayShopBankCardDTO allinpayShopBankCardDTO) {
|
|
||||||
this.allinpayShopBankCardDTO = allinpayShopBankCardDTO;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCreateInfoDTO{" +
|
|
||||||
"shopUserRegisterInfo=" + shopUserRegisterInfo +
|
|
||||||
", shopDetail=" + shopDetail +
|
|
||||||
", shopCompany=" + shopCompany +
|
|
||||||
", categorySigningList=" + categorySigningList +
|
|
||||||
", brandSigningList=" + brandSigningList +
|
|
||||||
", shopBankCardList=" + shopBankCardList +
|
|
||||||
", allinpayShopBankCardDTO=" + allinpayShopBankCardDTO +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.*;
|
import jakarta.validation.constraints.*;
|
||||||
|
import lombok.Data;
|
||||||
import org.hibernate.validator.constraints.Length;
|
import org.hibernate.validator.constraints.Length;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -15,6 +16,7 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopDetailDTO implements Serializable {
|
public class ShopDetailDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-05 15:36:12
|
* @date 2021-02-05 15:36:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopExtensionDTO implements Serializable {
|
public class ShopExtensionDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -25,46 +27,4 @@ public class ShopExtensionDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "店铺收藏数量")
|
@Schema(description = "店铺收藏数量")
|
||||||
private Long collectionNum;
|
private Long collectionNum;
|
||||||
|
|
||||||
public Long getShopExtensionId() {
|
|
||||||
return shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopExtensionId(Long shopExtensionId) {
|
|
||||||
this.shopExtensionId = shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSaleNum() {
|
|
||||||
return saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSaleNum(Integer saleNum) {
|
|
||||||
this.saleNum = saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopExtensionDTO{" +
|
|
||||||
"shopExtensionId=" + shopExtensionId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",saleNum=" + saleNum +
|
|
||||||
",collectionNum=" + collectionNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +10,7 @@ import java.math.BigDecimal;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRechargeInfoDTO implements Serializable {
|
public class ShopRechargeInfoDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -18,27 +20,5 @@ public class ShopRechargeInfoDTO implements Serializable {
|
|||||||
@Schema(description = "支付后,跳转的前台页面")
|
@Schema(description = "支付后,跳转的前台页面")
|
||||||
private String returnUrl;
|
private String returnUrl;
|
||||||
|
|
||||||
public BigDecimal getRechargeAmount() {
|
|
||||||
return rechargeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRechargeAmount(BigDecimal rechargeAmount) {
|
|
||||||
this.rechargeAmount = rechargeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReturnUrl() {
|
|
||||||
return returnUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReturnUrl(String returnUrl) {
|
|
||||||
this.returnUrl = returnUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRechargeInfoDTO{" +
|
|
||||||
"rechargeAmount=" + rechargeAmount +
|
|
||||||
", returnUrl='" + returnUrl + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-03-09 15:03:18
|
* @date 2021-03-09 15:03:18
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRefundAddrDTO implements Serializable {
|
public class ShopRefundAddrDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -60,144 +62,5 @@ public class ShopRefundAddrDTO implements Serializable {
|
|||||||
@Schema(description = "纬度")
|
@Schema(description = "纬度")
|
||||||
private Double lat;
|
private Double lat;
|
||||||
|
|
||||||
public Long getShopRefundAddrId() {
|
|
||||||
return shopRefundAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRefundAddrId(Long shopRefundAddrId) {
|
|
||||||
this.shopRefundAddrId = shopRefundAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsDefault() {
|
|
||||||
return isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsDefault(Integer isDefault) {
|
|
||||||
this.isDefault = isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConsignee() {
|
|
||||||
return consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConsignee(String consignee) {
|
|
||||||
this.consignee = consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCityId() {
|
|
||||||
return cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCityId(Long cityId) {
|
|
||||||
this.cityId = cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAreaId() {
|
|
||||||
return areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAreaId(Long areaId) {
|
|
||||||
this.areaId = areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getArea() {
|
|
||||||
return area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArea(String area) {
|
|
||||||
this.area = area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPostCode() {
|
|
||||||
return postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostCode(String postCode) {
|
|
||||||
this.postCode = postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAddr() {
|
|
||||||
return addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddr(String addr) {
|
|
||||||
this.addr = addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLng() {
|
|
||||||
return lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLng(Double lng) {
|
|
||||||
this.lng = lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLat() {
|
|
||||||
return lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLat(Double lat) {
|
|
||||||
this.lat = lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRefundAddrDTO{" +
|
|
||||||
"shopRefundAddrId=" + shopRefundAddrId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",mobile=" + mobile +
|
|
||||||
",isDefault=" + isDefault +
|
|
||||||
",consignee=" + consignee +
|
|
||||||
",provinceId=" + provinceId +
|
|
||||||
",province=" + province +
|
|
||||||
",cityId=" + cityId +
|
|
||||||
",city=" + city +
|
|
||||||
",areaId=" + areaId +
|
|
||||||
",area=" + area +
|
|
||||||
",postCode=" + postCode +
|
|
||||||
",addr=" + addr +
|
|
||||||
",lng=" + lng +
|
|
||||||
",lat=" + lat +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
* @date 2022-08-12 11:27:18
|
* @date 2022-08-12 11:27:18
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRenovationDTO implements Serializable {
|
public class ShopRenovationDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -33,63 +35,5 @@ public class ShopRenovationDTO implements Serializable {
|
|||||||
@Schema(description = "装修类型 1.pc 2.移动端")
|
@Schema(description = "装修类型 1.pc 2.移动端")
|
||||||
private Integer renovationType;
|
private Integer renovationType;
|
||||||
|
|
||||||
public Long getRenovationId() {
|
|
||||||
return renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationId(Long renovationId) {
|
|
||||||
this.renovationId = renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHomeStatus() {
|
|
||||||
return homeStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHomeStatus(Integer homeStatus) {
|
|
||||||
this.homeStatus = homeStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRenovationType() {
|
|
||||||
return renovationType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationType(Integer renovationType) {
|
|
||||||
this.renovationType = renovationType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRenovationDTO{" +
|
|
||||||
"renovationId=" + renovationId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",name=" + name +
|
|
||||||
",content=" + content +
|
|
||||||
",homeStatus=" + homeStatus +
|
|
||||||
",renovationType=" + renovationType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/8
|
* @date 2020/9/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopSearchDTO implements Serializable {
|
public class ShopSearchDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -26,45 +28,5 @@ public class ShopSearchDTO implements Serializable {
|
|||||||
@Schema(description = "支付系统类型")
|
@Schema(description = "支付系统类型")
|
||||||
private Integer paySysType;
|
private Integer paySysType;
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getShopIds() {
|
|
||||||
return shopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopIds(List<Long> shopIds) {
|
|
||||||
this.shopIds = shopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreferred() {
|
|
||||||
return isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreferred(Integer isPreferred) {
|
|
||||||
this.isPreferred = isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSearchDTO{" +
|
|
||||||
"shopName='" + shopName + '\'' +
|
|
||||||
", shopIds=" + shopIds +
|
|
||||||
", isPreferred=" + isPreferred +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|||||||
import jakarta.validation.constraints.Max;
|
import jakarta.validation.constraints.Max;
|
||||||
import jakarta.validation.constraints.Min;
|
import jakarta.validation.constraints.Min;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.util.Date;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/7/16 8:43
|
* @Date 2021/7/16 8:43
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopSigningInfoDTO implements Serializable {
|
public class ShopSigningInfoDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -32,45 +34,5 @@ public class ShopSigningInfoDTO implements Serializable {
|
|||||||
@Min(value = 1, message = "只能为1或2")
|
@Min(value = 1, message = "只能为1或2")
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractStartTime() {
|
|
||||||
return contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractStartTime(Date contractStartTime) {
|
|
||||||
this.contractStartTime = contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractEndTime() {
|
|
||||||
return contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractEndTime(Date contractEndTime) {
|
|
||||||
this.contractEndTime = contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSigningInfoDTO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", contractStartTime=" + contractStartTime +
|
|
||||||
", contractEndTime=" + contractEndTime +
|
|
||||||
", shopType=" + type +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2022-06-22 17:09:12
|
* @date 2022-06-22 17:09:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopSubstituteSalesDTO implements Serializable {
|
public class ShopSubstituteSalesDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -39,81 +41,5 @@ public class ShopSubstituteSalesDTO implements Serializable {
|
|||||||
@Schema(description = "代销设置类型为1才有:供货价高于代销价时是否自动下架:1.是,0.否")
|
@Schema(description = "代销设置类型为1才有:供货价高于代销价时是否自动下架:1.是,0.否")
|
||||||
private Integer automaticOff;
|
private Integer automaticOff;
|
||||||
|
|
||||||
public Integer getAutomaticOff() {
|
|
||||||
return automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAutomaticOff(Integer automaticOff) {
|
|
||||||
this.automaticOff = automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderShape() {
|
|
||||||
return orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderShape(Integer orderShape) {
|
|
||||||
this.orderShape = orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopSubstituteSalesId() {
|
|
||||||
return shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopSubstituteSalesId(Long shopSubstituteSalesId) {
|
|
||||||
this.shopSubstituteSalesId = shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesType() {
|
|
||||||
return salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesType(Integer salesType) {
|
|
||||||
this.salesType = salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesPriceType() {
|
|
||||||
return salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPriceType(Integer salesPriceType) {
|
|
||||||
this.salesPriceType = salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSalesPrice() {
|
|
||||||
return salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPrice(Long salesPrice) {
|
|
||||||
this.salesPrice = salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getModifier() {
|
|
||||||
return modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModifier(Long modifier) {
|
|
||||||
this.modifier = modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSubstituteSalesDTO{" +
|
|
||||||
"shopSubstituteSalesId=" + shopSubstituteSalesId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", salesType=" + salesType +
|
|
||||||
", salesPriceType=" + salesPriceType +
|
|
||||||
", salesPrice=" + salesPrice +
|
|
||||||
", orderShape=" + orderShape +
|
|
||||||
", modifier=" + modifier +
|
|
||||||
", automaticOff=" + automaticOff +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
* @date 2022-08-12 14:04:57
|
* @date 2022-08-12 14:04:57
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopTemplateDTO implements Serializable {
|
public class ShopTemplateDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,72 +38,5 @@ public class ShopTemplateDTO implements Serializable {
|
|||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getTemplateId() {
|
|
||||||
return templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTemplateId(Long templateId) {
|
|
||||||
this.templateId = templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImage() {
|
|
||||||
return image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImage(String image) {
|
|
||||||
this.image = image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopTemplateDTO{" +
|
|
||||||
"templateId=" + templateId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",name=" + name +
|
|
||||||
",content=" + content +
|
|
||||||
",image=" + image +
|
|
||||||
",type=" + type +
|
|
||||||
",remark=" + remark +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/8
|
* @date 2020/9/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopUserDTO implements Serializable {
|
public class ShopUserDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,117 +58,4 @@ public class ShopUserDTO implements Serializable {
|
|||||||
@Schema(description = "验证码")
|
@Schema(description = "验证码")
|
||||||
private String validCode;
|
private String validCode;
|
||||||
|
|
||||||
public Long getShopUserId() {
|
|
||||||
return shopUserId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopUserId(Long shopUserId) {
|
|
||||||
this.shopUserId = shopUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhoneNum() {
|
|
||||||
return phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhoneNum(String phoneNum) {
|
|
||||||
this.phoneNum = phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getRoleIds() {
|
|
||||||
return roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRoleIds(List<Long> roleIds) {
|
|
||||||
this.roleIds = roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEmail() {
|
|
||||||
return email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEmail(String email) {
|
|
||||||
this.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getValidCode() {
|
|
||||||
return validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValidCode(String validCode) {
|
|
||||||
this.validCode = validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopUserDTO{" +
|
|
||||||
"shopUserId=" + shopUserId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", nickName='" + nickName + '\'' +
|
|
||||||
", code='" + code + '\'' +
|
|
||||||
", phoneNum='" + phoneNum + '\'' +
|
|
||||||
", roleIds=" + roleIds +
|
|
||||||
", username='" + username + '\'' +
|
|
||||||
", password='" + password + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", email='" + email + '\'' +
|
|
||||||
", phone='" + phone + '\'' +
|
|
||||||
", validCode='" + validCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "商家注册信息")
|
@Schema(description = "商家注册信息")
|
||||||
public class ShopUserRegisterDTO implements Serializable {
|
public class ShopUserRegisterDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
@ -27,48 +29,8 @@ public class ShopUserRegisterDTO implements Serializable {
|
|||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
@Schema(description = "验证码")
|
@Schema(description = "验证码")
|
||||||
//@NotBlank(message = "验证码不能为空")
|
// TODO @NotBlank(message = "验证码不能为空")
|
||||||
private String validCode;
|
private String validCode;
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getValidCode() {
|
|
||||||
return validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValidCode(String validCode) {
|
|
||||||
this.validCode = validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopUserRegisterDTO{" +
|
|
||||||
"password='" + password + '\'' +
|
|
||||||
", mobile='" + mobile + '\'' +
|
|
||||||
", userName='" + username + '\'' +
|
|
||||||
", validCode='" + validCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-01-04 13:55:51
|
* @date 2021-01-04 13:55:51
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletDTO implements Serializable {
|
public class ShopWalletDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,99 +48,5 @@ public class ShopWalletDTO implements Serializable {
|
|||||||
@Schema(description = "乐观锁")
|
@Schema(description = "乐观锁")
|
||||||
private Long version;
|
private Long version;
|
||||||
|
|
||||||
public Long getShopWalletId() {
|
|
||||||
return shopWalletId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopWalletId(Long shopWalletId) {
|
|
||||||
this.shopWalletId = shopWalletId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getUpdateTime() {
|
|
||||||
return updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUpdateTime(Date updateTime) {
|
|
||||||
this.updateTime = updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUnsettledAmount() {
|
|
||||||
return unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnsettledAmount(Long unsettledAmount) {
|
|
||||||
this.unsettledAmount = unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSettledAmount() {
|
|
||||||
return settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettledAmount(Long settledAmount) {
|
|
||||||
this.settledAmount = settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreezeAmount() {
|
|
||||||
return freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreezeAmount(Long freezeAmount) {
|
|
||||||
this.freezeAmount = freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalSettledAmount() {
|
|
||||||
return totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalSettledAmount(Long totalSettledAmount) {
|
|
||||||
this.totalSettledAmount = totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSmsNum() {
|
|
||||||
return smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSmsNum(Integer smsNum) {
|
|
||||||
this.smsNum = smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVersion() {
|
|
||||||
return version;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVersion(Long version) {
|
|
||||||
this.version = version;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletVO{" +
|
|
||||||
"shopWalletId=" + shopWalletId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",unsettledAmount=" + unsettledAmount +
|
|
||||||
",settledAmount=" + settledAmount +
|
|
||||||
",freezeAmount=" + freezeAmount +
|
|
||||||
",totalSettledAmount=" + totalSettledAmount +
|
|
||||||
",smsNum=" + smsNum +
|
|
||||||
",version=" + version +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -13,6 +14,7 @@ import java.util.List;
|
|||||||
* @author Pineapple
|
* @author Pineapple
|
||||||
* @date 2021/6/8 19:56
|
* @date 2021/6/8 19:56
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletLogSearchDTO implements Serializable {
|
public class ShopWalletLogSearchDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -60,135 +62,4 @@ public class ShopWalletLogSearchDTO implements Serializable {
|
|||||||
@Schema(description = "通联充值状态 0.待支付 1.申请成功(还没确认) 2.充值成功 3.充值失败")
|
@Schema(description = "通联充值状态 0.待支付 1.申请成功(还没确认) 2.充值成功 3.充值失败")
|
||||||
private Integer allinpayStatus;
|
private Integer allinpayStatus;
|
||||||
|
|
||||||
public Integer getShopIoType() {
|
|
||||||
return shopIoType;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopIoType(Integer shopIoType) {
|
|
||||||
this.shopIoType = shopIoType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlatformIoType() {
|
|
||||||
return platformIoType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformIoType(Integer platformIoType) {
|
|
||||||
this.platformIoType = platformIoType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAmountType() {
|
|
||||||
return amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountType(Integer amountType) {
|
|
||||||
this.amountType = amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReason() {
|
|
||||||
return reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReason(Integer reason) {
|
|
||||||
this.reason = reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getShopIds() {
|
|
||||||
return shopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopIds(List<Long> shopIds) {
|
|
||||||
this.shopIds = shopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSortType() {
|
|
||||||
return sortType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSortType(Integer sortType) {
|
|
||||||
this.sortType = sortType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(Long bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllinpayStatus() {
|
|
||||||
return allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayStatus(Integer allinpayStatus) {
|
|
||||||
this.allinpayStatus = allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletLogSearchDTO{" +
|
|
||||||
"shopIoType=" + shopIoType +
|
|
||||||
", platformIoType=" + platformIoType +
|
|
||||||
", amountType=" + amountType +
|
|
||||||
", reason=" + reason +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", refundId=" + refundId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", shopIds=" + shopIds +
|
|
||||||
", sortType=" + sortType +
|
|
||||||
", bizOrderNo=" + bizOrderNo +
|
|
||||||
", allinpayStatus=" + allinpayStatus +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.math.BigDecimal;
|
|||||||
*
|
*
|
||||||
* @author chiley
|
* @author chiley
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletRechargeOrderDTO implements Serializable {
|
public class ShopWalletRechargeOrderDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -20,27 +22,5 @@ public class ShopWalletRechargeOrderDTO implements Serializable {
|
|||||||
@Schema(description = "充值金额")
|
@Schema(description = "充值金额")
|
||||||
private BigDecimal amount;
|
private BigDecimal amount;
|
||||||
|
|
||||||
public Long getRechargeId() {
|
|
||||||
return rechargeId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRechargeId(Long rechargeId) {
|
|
||||||
this.rechargeId = rechargeId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAmount() {
|
|
||||||
return amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmount(BigDecimal amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletRechargeOrderDTO{" +
|
|
||||||
"rechargeId=" + rechargeId +
|
|
||||||
", amount=" + amount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
* @author lanhai
|
* @author lanhai
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWithdrawCashConfigDto implements Serializable {
|
public class ShopWithdrawCashConfigDto implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -19,35 +21,5 @@ public class ShopWithdrawCashConfigDto implements Serializable {
|
|||||||
@Schema(description = "提现金额次数")
|
@Schema(description = "提现金额次数")
|
||||||
private Integer number;
|
private Integer number;
|
||||||
|
|
||||||
public Double getWithdrawCashLeast() {
|
|
||||||
return withdrawCashLeast;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWithdrawCashLeast(Double withdrawCashLeast) {
|
|
||||||
this.withdrawCashLeast = withdrawCashLeast;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getWithdrawCashMax() {
|
|
||||||
return withdrawCashMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWithdrawCashMax(Double withdrawCashMax) {
|
|
||||||
this.withdrawCashMax = withdrawCashMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFrequency() {
|
|
||||||
return frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFrequency(Integer frequency) {
|
|
||||||
this.frequency = frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNumber() {
|
|
||||||
return number;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNumber(Integer number) {
|
|
||||||
this.number = number;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.dto;
|
package com.tmerclub.cloud.multishop.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.Date;
|
|||||||
* 商家提现申请信息DTO
|
* 商家提现申请信息DTO
|
||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWithdrawCashDTO implements Serializable {
|
public class ShopWithdrawCashDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -68,171 +70,4 @@ public class ShopWithdrawCashDTO implements Serializable {
|
|||||||
@Schema(description = "提现失败原因")
|
@Schema(description = "提现失败原因")
|
||||||
private String payFailMessage;
|
private String payFailMessage;
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getValidCode() {
|
|
||||||
return validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValidCode(String validCode) {
|
|
||||||
this.validCode = validCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCashId() {
|
|
||||||
return cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCashId(Long cashId) {
|
|
||||||
this.cashId = cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAmount() {
|
|
||||||
return amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmount(Long amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getAuditingTime() {
|
|
||||||
return auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditingTime(Date auditingTime) {
|
|
||||||
this.auditingTime = auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopRemarks() {
|
|
||||||
return shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRemarks(String shopRemarks) {
|
|
||||||
this.shopRemarks = shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingAccount() {
|
|
||||||
return payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingAccount(String payingAccount) {
|
|
||||||
this.payingAccount = payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingCardNo() {
|
|
||||||
return payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingCardNo(String payingCardNo) {
|
|
||||||
this.payingCardNo = payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPayingTime() {
|
|
||||||
return payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingTime(Date payingTime) {
|
|
||||||
this.payingTime = payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopBankCardId() {
|
|
||||||
return shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardId(Long shopBankCardId) {
|
|
||||||
this.shopBankCardId = shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllinpayStatus() {
|
|
||||||
return allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayStatus(Integer allinpayStatus) {
|
|
||||||
this.allinpayStatus = allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(String bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayFailMessage() {
|
|
||||||
return payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayFailMessage(String payFailMessage) {
|
|
||||||
this.payFailMessage = payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWithdrawCashDTO{" +
|
|
||||||
"cashId=" + cashId +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", amount=" + amount +
|
|
||||||
", auditingTime=" + auditingTime +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", shopRemarks='" + shopRemarks + '\'' +
|
|
||||||
", payingAccount='" + payingAccount + '\'' +
|
|
||||||
", payingCardNo='" + payingCardNo + '\'' +
|
|
||||||
", payingTime=" + payingTime +
|
|
||||||
", shopBankCardId=" + shopBankCardId +
|
|
||||||
", validCode='" + validCode + '\'' +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", allinpayStatus=" + allinpayStatus +
|
|
||||||
", bizOrderNo='" + bizOrderNo + '\'' +
|
|
||||||
", payFailMessage='" + payFailMessage + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
import jakarta.validation.constraints.Size;
|
import jakarta.validation.constraints.Size;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020/12/30
|
* @date 2020/12/30
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "用户名和密码参数")
|
@Schema(description = "用户名和密码参数")
|
||||||
public class UsernameAndPasswordDTO implements Serializable {
|
public class UsernameAndPasswordDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
@ -42,64 +44,4 @@ public class UsernameAndPasswordDTO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "店铺id")
|
@Schema(description = "店铺id")
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEmail() {
|
|
||||||
return email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEmail(String email) {
|
|
||||||
this.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UsernameAndPasswordDTO{" +
|
|
||||||
"username='" + username + '\'' +
|
|
||||||
", email='" + email + '\'' +
|
|
||||||
", phone='" + phone + '\'' +
|
|
||||||
", password='" + password + '\'' +
|
|
||||||
", code='" + code + '\'' +
|
|
||||||
", shopId='" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class HotSearch extends BaseModel implements Serializable {
|
public class HotSearch extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,74 +53,4 @@ public class HotSearch extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
public Long getHotSearchId() {
|
|
||||||
return hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHotSearchId(Long hotSearchId) {
|
|
||||||
this.hotSearchId = hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "HotSearch{" +
|
|
||||||
"hotSearchId=" + hotSearchId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", seq=" + seq +
|
|
||||||
", status=" + status +
|
|
||||||
", title='" + title + '\'' +
|
|
||||||
", type='" + type +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-24 16:38:32
|
* @date 2020-11-24 16:38:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class IndexImg extends BaseModel implements Serializable {
|
public class IndexImg extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,74 +53,5 @@ public class IndexImg extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer imgType;
|
private Integer imgType;
|
||||||
|
|
||||||
public Long getImgId() {
|
|
||||||
return imgId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgId(Long imgId) {
|
|
||||||
this.imgId = imgId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImgUrl() {
|
|
||||||
return imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgUrl(String imgUrl) {
|
|
||||||
this.imgUrl = imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getImgType() {
|
|
||||||
return imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgType(Integer imgType) {
|
|
||||||
this.imgType = imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "IndexImg{" +
|
|
||||||
"imgId=" + imgId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",imgUrl=" + imgUrl +
|
|
||||||
",status=" + status +
|
|
||||||
",seq=" + seq +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",imgType=" + imgType +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-25 17:57:56
|
* @date 2020-11-25 17:57:56
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class Notice extends BaseModel implements Serializable {
|
public class Notice extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -88,136 +90,4 @@ public class Notice extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Date sendTime;
|
private Date sendTime;
|
||||||
|
|
||||||
public Integer getImmediatelySend() {
|
|
||||||
return immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImmediatelySend(Integer immediatelySend) {
|
|
||||||
this.immediatelySend = immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getSendTime() {
|
|
||||||
return sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSendTime(Date sendTime) {
|
|
||||||
this.sendTime = sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsLearning() {
|
|
||||||
return isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsLearning(Integer isLearning) {
|
|
||||||
this.isLearning = isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsTop() {
|
|
||||||
return isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsTop(Integer isTop) {
|
|
||||||
this.isTop = isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPublishTime() {
|
|
||||||
return publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPublishTime(Date publishTime) {
|
|
||||||
this.publishTime = publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTypes() {
|
|
||||||
return types;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTypes(String types) {
|
|
||||||
this.types = types;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMultiShopIds() {
|
|
||||||
return multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMultiShopIds(String multiShopIds) {
|
|
||||||
this.multiShopIds = multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserIds() {
|
|
||||||
return userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserIds(String userIds) {
|
|
||||||
this.userIds = userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierIds() {
|
|
||||||
return supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierIds(String supplierIds) {
|
|
||||||
this.supplierIds = supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "Notice{" +
|
|
||||||
"id=" + id +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", types='" + types + '\'' +
|
|
||||||
", multiShopIds='" + multiShopIds + '\'' +
|
|
||||||
", userIds='" + userIds + '\'' +
|
|
||||||
", supplierIds='" + supplierIds + '\'' +
|
|
||||||
", title='" + title + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", isTop=" + isTop +
|
|
||||||
", publishTime=" + publishTime +
|
|
||||||
", isLearning=" + isLearning +
|
|
||||||
", immediatelySend=" + immediatelySend +
|
|
||||||
", sendTime=" + sendTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-01 17:10:35
|
* @date 2021-02-01 17:10:35
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopAuditing extends BaseModel implements Serializable {
|
public class ShopAuditing extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,72 +53,5 @@ public class ShopAuditing extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String remarks;
|
private String remarks;
|
||||||
|
|
||||||
public Integer getShopType() {
|
|
||||||
return shopType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopType(Integer shopType) {
|
|
||||||
this.shopType = shopType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopAuditingId() {
|
|
||||||
return shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAuditingId(Long shopAuditingId) {
|
|
||||||
this.shopAuditingId = shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopAuditing{" +
|
|
||||||
"shopAuditingId=" + shopAuditingId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", status=" + status +
|
|
||||||
", shopType=" + shopType +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-04-29 10:22:13
|
* @date 2021-04-29 10:22:13
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopBankCard extends BaseModel implements Serializable {
|
public class ShopBankCard extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -76,117 +78,5 @@ public class ShopBankCard extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopBankCardId() {
|
|
||||||
return shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardId(Long shopBankCardId) {
|
|
||||||
this.shopBankCardId = shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOpeningBank() {
|
|
||||||
return openingBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOpeningBank(String openingBank) {
|
|
||||||
this.openingBank = openingBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRecipientName() {
|
|
||||||
return recipientName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRecipientName(String recipientName) {
|
|
||||||
this.recipientName = recipientName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCardNo() {
|
|
||||||
return cardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCardNo(String cardNo) {
|
|
||||||
this.cardNo = cardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsDefault() {
|
|
||||||
return isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsDefault(Integer isDefault) {
|
|
||||||
this.isDefault = isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBranchName() {
|
|
||||||
return branchName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBranchName(String branchName) {
|
|
||||||
this.branchName = branchName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCardNo() {
|
|
||||||
return bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardNo(String bankCardNo) {
|
|
||||||
this.bankCardNo = bankCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getBankCardPro() {
|
|
||||||
return bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCardPro(Integer bankCardPro) {
|
|
||||||
this.bankCardPro = bankCardPro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUnionBank() {
|
|
||||||
return unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnionBank(String unionBank) {
|
|
||||||
this.unionBank = unionBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopBankCard{" +
|
|
||||||
"shopBankCardId=" + shopBankCardId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", openingBank='" + openingBank + '\'' +
|
|
||||||
", recipientName='" + recipientName + '\'' +
|
|
||||||
", cardNo='" + cardNo + '\'' +
|
|
||||||
", branchName='" + branchName + '\'' +
|
|
||||||
", isDefault=" + isDefault +
|
|
||||||
", bankCardNo='" + bankCardNo + '\'' +
|
|
||||||
", bankCardPro=" + bankCardPro +
|
|
||||||
", unionBank=" + unionBank +
|
|
||||||
", status=" + status +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-02-23 14:41:42
|
* @date 2021-02-23 14:41:42
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCollection extends BaseModel implements Serializable {
|
public class ShopCollection extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -30,39 +32,4 @@ public class ShopCollection extends BaseModel implements Serializable {
|
|||||||
* 用户id
|
* 用户id
|
||||||
*/
|
*/
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|
||||||
public Long getCollectionId() {
|
|
||||||
return collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionId(Long collectionId) {
|
|
||||||
this.collectionId = collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserCollectionShopVO{" +
|
|
||||||
"collectionId=" + collectionId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",userId=" + userId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-04-27 15:16:03
|
* @date 2021-04-27 15:16:03
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompany extends BaseModel implements Serializable {
|
public class ShopCompany extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -104,167 +106,5 @@ public class ShopCompany extends BaseModel implements Serializable {
|
|||||||
public ShopCompany() {
|
public ShopCompany() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ShopCompany(Integer status, Long shopCompanyId) {
|
|
||||||
this.status = status;
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCompanyId() {
|
|
||||||
return shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyId(Long shopCompanyId) {
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCreditCode() {
|
|
||||||
return creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreditCode(String creditCode) {
|
|
||||||
this.creditCode = creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFirmName() {
|
|
||||||
return firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirmName(String firmName) {
|
|
||||||
this.firmName = firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getResidence() {
|
|
||||||
return residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setResidence(String residence) {
|
|
||||||
this.residence = residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRepresentative() {
|
|
||||||
return representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRepresentative(String representative) {
|
|
||||||
this.representative = representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalIds() {
|
|
||||||
return legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalIds(String legalIds) {
|
|
||||||
this.legalIds = legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalPhone() {
|
|
||||||
return legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalPhone(String legalPhone) {
|
|
||||||
this.legalPhone = legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getCapital() {
|
|
||||||
return capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCapital(Double capital) {
|
|
||||||
this.capital = capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getFoundTime() {
|
|
||||||
return foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFoundTime(Date foundTime) {
|
|
||||||
this.foundTime = foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessScope() {
|
|
||||||
return businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessScope(String businessScope) {
|
|
||||||
this.businessScope = businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessLicense() {
|
|
||||||
return businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessLicense(String businessLicense) {
|
|
||||||
this.businessLicense = businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardFront() {
|
|
||||||
return identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardFront(String identityCardFront) {
|
|
||||||
this.identityCardFront = identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardLater() {
|
|
||||||
return identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardLater(String identityCardLater) {
|
|
||||||
this.identityCardLater = identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompany{" +
|
|
||||||
"shopCompanyId=" + shopCompanyId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", creditCode='" + creditCode + '\'' +
|
|
||||||
", firmName='" + firmName + '\'' +
|
|
||||||
", residence='" + residence + '\'' +
|
|
||||||
", representative='" + representative + '\'' +
|
|
||||||
", legalIds='" + legalIds + '\'' +
|
|
||||||
", legalPhone='" + legalPhone + '\'' +
|
|
||||||
", capital=" + capital +
|
|
||||||
", foundTime=" + foundTime +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", businessScope='" + businessScope + '\'' +
|
|
||||||
", businessLicense='" + businessLicense + '\'' +
|
|
||||||
", identityCardFront='" + identityCardFront + '\'' +
|
|
||||||
", identityCardLater='" + identityCardLater + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author chiley
|
* @author chiley
|
||||||
* @date 2022/9/1 15:52
|
* @date 2022/9/1 15:52
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompanyAuditing extends BaseModel implements Serializable {
|
public class ShopCompanyAuditing extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -50,72 +52,5 @@ public class ShopCompanyAuditing extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String remarks;
|
private String remarks;
|
||||||
|
|
||||||
public Long getCompanyAuditingId() {
|
|
||||||
return companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCompanyAuditingId(Long companyAuditingId) {
|
|
||||||
this.companyAuditingId = companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCompanyId() {
|
|
||||||
return shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyId(Long shopCompanyId) {
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompanyAuditing{" +
|
|
||||||
"companyAuditingId=" + companyAuditingId +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopCompanyId=" + shopCompanyId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.model;
|
|||||||
import com.tmerclub.cloud.common.constant.CompanyInfoProcessStatus;
|
import com.tmerclub.cloud.common.constant.CompanyInfoProcessStatus;
|
||||||
import com.tmerclub.cloud.common.constant.IdCardCollectProcessStatus;
|
import com.tmerclub.cloud.common.constant.IdCardCollectProcessStatus;
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +16,7 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopDetail extends BaseModel implements Serializable {
|
public class ShopDetail extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -131,207 +133,4 @@ public class ShopDetail extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String legalAcctProtocolNo;
|
private String legalAcctProtocolNo;
|
||||||
|
|
||||||
public Date getContractStartTime() {
|
|
||||||
return contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractStartTime(Date contractStartTime) {
|
|
||||||
this.contractStartTime = contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractEndTime() {
|
|
||||||
return contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractEndTime(Date contractEndTime) {
|
|
||||||
this.contractEndTime = contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobileBackgroundPic() {
|
|
||||||
return mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobileBackgroundPic(String mobileBackgroundPic) {
|
|
||||||
this.mobileBackgroundPic = mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcBackgroundPic() {
|
|
||||||
return pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcBackgroundPic(String pcBackgroundPic) {
|
|
||||||
this.pcBackgroundPic = pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreferred() {
|
|
||||||
return isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreferred(Integer isPreferred) {
|
|
||||||
this.isPreferred = isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNoticeMobile() {
|
|
||||||
return noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNoticeMobile(String noticeMobile) {
|
|
||||||
this.noticeMobile = noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContactName() {
|
|
||||||
return contactName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContactName(String contactName) {
|
|
||||||
this.contactName = contactName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMerchantName() {
|
|
||||||
return merchantName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMerchantName(String merchantName) {
|
|
||||||
this.merchantName = merchantName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContactPhone() {
|
|
||||||
return contactPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContactPhone(String contactPhone) {
|
|
||||||
this.contactPhone = contactPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsCreateMember() {
|
|
||||||
return isCreateMember;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsCreateMember(Integer isCreateMember) {
|
|
||||||
this.isCreateMember = isCreateMember;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsBindPhone() {
|
|
||||||
return isBindPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsBindPhone(Integer isBindPhone) {
|
|
||||||
this.isBindPhone = isBindPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCompanyInfoProcessStatus() {
|
|
||||||
return companyInfoProcessStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCompanyInfoProcessStatus(Integer companyInfoProcessStatus) {
|
|
||||||
this.companyInfoProcessStatus = companyInfoProcessStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdCardCollectProcessStatus() {
|
|
||||||
return idCardCollectProcessStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdCardCollectProcessStatus(Integer idCardCollectProcessStatus) {
|
|
||||||
this.idCardCollectProcessStatus = idCardCollectProcessStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllinpayShopStatus() {
|
|
||||||
return allinpayShopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayShopStatus(Integer allinpayShopStatus) {
|
|
||||||
this.allinpayShopStatus = allinpayShopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCompanyAcctProtocolNo() {
|
|
||||||
return companyAcctProtocolNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCompanyAcctProtocolNo(String companyAcctProtocolNo) {
|
|
||||||
this.companyAcctProtocolNo = companyAcctProtocolNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalAcctProtocolNo() {
|
|
||||||
return legalAcctProtocolNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalAcctProtocolNo(String legalAcctProtocolNo) {
|
|
||||||
this.legalAcctProtocolNo = legalAcctProtocolNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopDetail{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", type=" + type +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", noticeMobile='" + noticeMobile + '\'' +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", isPreferred=" + isPreferred +
|
|
||||||
", mobileBackgroundPic='" + mobileBackgroundPic + '\'' +
|
|
||||||
", pcBackgroundPic='" + pcBackgroundPic + '\'' +
|
|
||||||
", contactName='" + contactName + '\'' +
|
|
||||||
", merchantName='" + merchantName + '\'' +
|
|
||||||
", contactPhone='" + contactPhone + '\'' +
|
|
||||||
", contractStartTime=" + contractStartTime +
|
|
||||||
", contractEndTime=" + contractEndTime +
|
|
||||||
", isCreateMember=" + isCreateMember +
|
|
||||||
", isBindPhone=" + isBindPhone +
|
|
||||||
", companyInfoProcessStatus=" + companyInfoProcessStatus +
|
|
||||||
", idCardCollectProcessStatus=" + idCardCollectProcessStatus +
|
|
||||||
", allinpayShopStatus=" + allinpayShopStatus +
|
|
||||||
", companyAcctProtocolNo='" + companyAcctProtocolNo + '\'' +
|
|
||||||
", legalAcctProtocolNo='" + legalAcctProtocolNo + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-05 15:36:12
|
* @date 2021-02-05 15:36:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopExtension extends BaseModel implements Serializable {
|
public class ShopExtension extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -35,48 +37,4 @@ public class ShopExtension extends BaseModel implements Serializable {
|
|||||||
* 店铺收藏数量
|
* 店铺收藏数量
|
||||||
*/
|
*/
|
||||||
private Long collectionNum;
|
private Long collectionNum;
|
||||||
|
|
||||||
public Long getShopExtensionId() {
|
|
||||||
return shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopExtensionId(Long shopExtensionId) {
|
|
||||||
this.shopExtensionId = shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSaleNum() {
|
|
||||||
return saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSaleNum(Integer saleNum) {
|
|
||||||
this.saleNum = saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopExtension{" +
|
|
||||||
"shopExtensionId=" + shopExtensionId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",saleNum=" + saleNum +
|
|
||||||
",collectionNum=" + collectionNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-03-09 15:03:18
|
* @date 2021-03-09 15:03:18
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRefundAddr extends BaseModel implements Serializable {
|
public class ShopRefundAddr extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -91,146 +93,4 @@ public class ShopRefundAddr extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Double lat;
|
private Double lat;
|
||||||
|
|
||||||
public Long getShopRefundAddrId() {
|
|
||||||
return shopRefundAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRefundAddrId(Long shopRefundAddrId) {
|
|
||||||
this.shopRefundAddrId = shopRefundAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsDefault() {
|
|
||||||
return isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsDefault(Integer isDefault) {
|
|
||||||
this.isDefault = isDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConsignee() {
|
|
||||||
return consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConsignee(String consignee) {
|
|
||||||
this.consignee = consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCityId() {
|
|
||||||
return cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCityId(Long cityId) {
|
|
||||||
this.cityId = cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAreaId() {
|
|
||||||
return areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAreaId(Long areaId) {
|
|
||||||
this.areaId = areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getArea() {
|
|
||||||
return area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArea(String area) {
|
|
||||||
this.area = area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPostCode() {
|
|
||||||
return postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostCode(String postCode) {
|
|
||||||
this.postCode = postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAddr() {
|
|
||||||
return addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddr(String addr) {
|
|
||||||
this.addr = addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLng() {
|
|
||||||
return lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLng(Double lng) {
|
|
||||||
this.lng = lng;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLat() {
|
|
||||||
return lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLat(Double lat) {
|
|
||||||
this.lat = lat;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRefundAddr{" +
|
|
||||||
"shopRefundAddrId=" + shopRefundAddrId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",mobile=" + mobile +
|
|
||||||
",isDefault=" + isDefault +
|
|
||||||
",consignee=" + consignee +
|
|
||||||
",provinceId=" + provinceId +
|
|
||||||
",province=" + province +
|
|
||||||
",cityId=" + cityId +
|
|
||||||
",city=" + city +
|
|
||||||
",areaId=" + areaId +
|
|
||||||
",area=" + area +
|
|
||||||
",postCode=" + postCode +
|
|
||||||
",addr=" + addr +
|
|
||||||
",lng=" + lng +
|
|
||||||
",lat=" + lat +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
* @date 2022-08-12 11:27:18
|
* @date 2022-08-12 11:27:18
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRenovation extends BaseModel implements Serializable {
|
public class ShopRenovation extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,65 +48,4 @@ public class ShopRenovation extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer renovationType;
|
private Integer renovationType;
|
||||||
|
|
||||||
public Long getRenovationId() {
|
|
||||||
return renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationId(Long renovationId) {
|
|
||||||
this.renovationId = renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHomeStatus() {
|
|
||||||
return homeStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHomeStatus(Integer homeStatus) {
|
|
||||||
this.homeStatus = homeStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRenovationType() {
|
|
||||||
return renovationType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationType(Integer renovationType) {
|
|
||||||
this.renovationType = renovationType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRenovation{" +
|
|
||||||
"renovationId=" + renovationId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",name=" + name +
|
|
||||||
",content=" + content +
|
|
||||||
",homeStatus=" + homeStatus +
|
|
||||||
",renovationType=" + renovationType +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2022-06-22 17:09:12
|
* @date 2022-06-22 17:09:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopSubstituteSales extends BaseModel implements Serializable {
|
public class ShopSubstituteSales extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,81 +58,4 @@ public class ShopSubstituteSales extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer automaticOff;
|
private Integer automaticOff;
|
||||||
|
|
||||||
public Integer getAutomaticOff() {
|
|
||||||
return automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAutomaticOff(Integer automaticOff) {
|
|
||||||
this.automaticOff = automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderShape() {
|
|
||||||
return orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderShape(Integer orderShape) {
|
|
||||||
this.orderShape = orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopSubstituteSalesId() {
|
|
||||||
return shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopSubstituteSalesId(Long shopSubstituteSalesId) {
|
|
||||||
this.shopSubstituteSalesId = shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesType() {
|
|
||||||
return salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesType(Integer salesType) {
|
|
||||||
this.salesType = salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesPriceType() {
|
|
||||||
return salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPriceType(Integer salesPriceType) {
|
|
||||||
this.salesPriceType = salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSalesPrice() {
|
|
||||||
return salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPrice(Long salesPrice) {
|
|
||||||
this.salesPrice = salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getModifier() {
|
|
||||||
return modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModifier(Long modifier) {
|
|
||||||
this.modifier = modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSubstituteSales{" +
|
|
||||||
"shopSubstituteSalesId=" + shopSubstituteSalesId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", salesType=" + salesType +
|
|
||||||
", salesPriceType=" + salesPriceType +
|
|
||||||
", salesPrice=" + salesPrice +
|
|
||||||
", orderShape=" + orderShape +
|
|
||||||
", modifier=" + modifier +
|
|
||||||
", automaticOff=" + automaticOff +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
* @date 2022-08-12 14:04:57
|
* @date 2022-08-12 14:04:57
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopTemplate extends BaseModel implements Serializable {
|
public class ShopTemplate extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,74 +53,4 @@ public class ShopTemplate extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getTemplateId() {
|
|
||||||
return templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTemplateId(Long templateId) {
|
|
||||||
this.templateId = templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImage() {
|
|
||||||
return image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImage(String image) {
|
|
||||||
this.image = image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopTemplate{" +
|
|
||||||
"templateId=" + templateId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",name=" + name +
|
|
||||||
",content=" + content +
|
|
||||||
",image=" + image +
|
|
||||||
",type=" + type +
|
|
||||||
",remark=" + remark +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopUser extends BaseModel implements Serializable {
|
public class ShopUser extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,65 +48,4 @@ public class ShopUser extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer hasAccount;
|
private Integer hasAccount;
|
||||||
|
|
||||||
public Long getShopUserId() {
|
|
||||||
return shopUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopUserId(Long shopUserId) {
|
|
||||||
this.shopUserId = shopUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhoneNum() {
|
|
||||||
return phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhoneNum(String phoneNum) {
|
|
||||||
this.phoneNum = phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasAccount() {
|
|
||||||
return hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasAccount(Integer hasAccount) {
|
|
||||||
this.hasAccount = hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopUser{" +
|
|
||||||
"shopUserId=" + shopUserId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",nickName=" + nickName +
|
|
||||||
",code=" + code +
|
|
||||||
",phoneNum=" + phoneNum +
|
|
||||||
",hasAccount=" + hasAccount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.model;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
import com.tmerclub.cloud.api.payment.constant.PaySysType;
|
import com.tmerclub.cloud.api.payment.constant.PaySysType;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-01-07 16:41:03
|
* @date 2021-01-07 16:41:03
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWallet extends BaseModel implements Serializable {
|
public class ShopWallet extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -63,90 +65,5 @@ public class ShopWallet extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long version;
|
private Long version;
|
||||||
|
|
||||||
public Long getShopWalletId() {
|
|
||||||
return shopWalletId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopWalletId(Long shopWalletId) {
|
|
||||||
this.shopWalletId = shopWalletId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUnsettledAmount() {
|
|
||||||
return unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnsettledAmount(Long unsettledAmount) {
|
|
||||||
this.unsettledAmount = unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSettledAmount() {
|
|
||||||
return settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettledAmount(Long settledAmount) {
|
|
||||||
this.settledAmount = settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreezeAmount() {
|
|
||||||
return freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreezeAmount(Long freezeAmount) {
|
|
||||||
this.freezeAmount = freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalSettledAmount() {
|
|
||||||
return totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalSettledAmount(Long totalSettledAmount) {
|
|
||||||
this.totalSettledAmount = totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSmsNum() {
|
|
||||||
return smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSmsNum(Integer smsNum) {
|
|
||||||
this.smsNum = smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVersion() {
|
|
||||||
return version;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVersion(Long version) {
|
|
||||||
this.version = version;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWallet{" +
|
|
||||||
"shopWalletId=" + shopWalletId +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", unsettledAmount=" + unsettledAmount +
|
|
||||||
", settledAmount=" + settledAmount +
|
|
||||||
", freezeAmount=" + freezeAmount +
|
|
||||||
", totalSettledAmount=" + totalSettledAmount +
|
|
||||||
", smsNum=" + smsNum +
|
|
||||||
", version=" + version +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-01-07 16:41:03
|
* @date 2021-01-07 16:41:03
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletLog extends BaseModel implements Serializable {
|
public class ShopWalletLog extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -81,126 +83,5 @@ public class ShopWalletLog extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long shopReduceAmount;
|
private Long shopReduceAmount;
|
||||||
|
|
||||||
public Long getWalletLogId() {
|
|
||||||
return walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWalletLogId(Long walletLogId) {
|
|
||||||
this.walletLogId = walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIoType() {
|
|
||||||
return ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIoType(Integer ioType) {
|
|
||||||
this.ioType = ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAmountType() {
|
|
||||||
return amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountType(Integer amountType) {
|
|
||||||
this.amountType = amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReason() {
|
|
||||||
return reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReason(Integer reason) {
|
|
||||||
this.reason = reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getChangeAmount() {
|
|
||||||
return changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChangeAmount(Long changeAmount) {
|
|
||||||
this.changeAmount = changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserAmount() {
|
|
||||||
return userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAmount(Long userAmount) {
|
|
||||||
this.userAmount = userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformAmount() {
|
|
||||||
return platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformAmount(Long platformAmount) {
|
|
||||||
this.platformAmount = platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCommission() {
|
|
||||||
return platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCommission(Long platformCommission) {
|
|
||||||
this.platformCommission = platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopReduceAmount() {
|
|
||||||
return shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopReduceAmount(Long shopReduceAmount) {
|
|
||||||
this.shopReduceAmount = shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletLog{" +
|
|
||||||
"walletLogId=" + walletLogId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", refundId=" + refundId +
|
|
||||||
", ioType=" + ioType +
|
|
||||||
", amountType=" + amountType +
|
|
||||||
", changeAmount=" + changeAmount +
|
|
||||||
", reason=" + reason +
|
|
||||||
", userAmount=" + userAmount +
|
|
||||||
", platformAmount=" + platformAmount +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", platformCommission=" + platformCommission +
|
|
||||||
", shopReduceAmount=" + shopReduceAmount +
|
|
||||||
"} " + super.toString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.model;
|
package com.tmerclub.cloud.multishop.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-01-07 16:41:03
|
* @date 2021-01-07 16:41:03
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWithdrawCash extends BaseModel implements Serializable {
|
public class ShopWithdrawCash extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -94,154 +96,4 @@ public class ShopWithdrawCash extends BaseModel implements Serializable {
|
|||||||
* 提现失败原因
|
* 提现失败原因
|
||||||
*/
|
*/
|
||||||
private String payFailMessage;
|
private String payFailMessage;
|
||||||
|
|
||||||
public Long getCashId() {
|
|
||||||
return cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCashId(Long cashId) {
|
|
||||||
this.cashId = cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAmount() {
|
|
||||||
return amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmount(Long amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getAuditingTime() {
|
|
||||||
return auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditingTime(Date auditingTime) {
|
|
||||||
this.auditingTime = auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopRemarks() {
|
|
||||||
return shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRemarks(String shopRemarks) {
|
|
||||||
this.shopRemarks = shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingAccount() {
|
|
||||||
return payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingAccount(String payingAccount) {
|
|
||||||
this.payingAccount = payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingCardNo() {
|
|
||||||
return payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingCardNo(String payingCardNo) {
|
|
||||||
this.payingCardNo = payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPayingTime() {
|
|
||||||
return payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingTime(Date payingTime) {
|
|
||||||
this.payingTime = payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopBankCardId() {
|
|
||||||
return shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardId(Long shopBankCardId) {
|
|
||||||
this.shopBankCardId = shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllinpayStatus() {
|
|
||||||
return allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayStatus(Integer allinpayStatus) {
|
|
||||||
this.allinpayStatus = allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(String bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayFailMessage() {
|
|
||||||
return payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayFailMessage(String payFailMessage) {
|
|
||||||
this.payFailMessage = payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWithdrawCash{" +
|
|
||||||
"cashId=" + cashId +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", amount=" + amount +
|
|
||||||
", auditingTime=" + auditingTime +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", shopRemarks='" + shopRemarks + '\'' +
|
|
||||||
", payingAccount='" + payingAccount + '\'' +
|
|
||||||
", payingCardNo='" + payingCardNo + '\'' +
|
|
||||||
", payingTime=" + payingTime +
|
|
||||||
", shopBankCardId=" + shopBankCardId +
|
|
||||||
", allinpayStatus=" + allinpayStatus +
|
|
||||||
", bizOrderNo='" + bizOrderNo + '\'' +
|
|
||||||
", payFailMessage='" + payFailMessage + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class HotSearchVO extends BaseVO implements Serializable {
|
public class HotSearchVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,72 +39,5 @@ public class HotSearchVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "1:商品热搜 2:店铺热搜")
|
@Schema(description = "1:商品热搜 2:店铺热搜")
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
public Long getHotSearchId() {
|
|
||||||
return hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHotSearchId(Long hotSearchId) {
|
|
||||||
this.hotSearchId = hotSearchId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "HotSearchVO{" +
|
|
||||||
"hotSearchId=" + hotSearchId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",content=" + content +
|
|
||||||
",seq=" + seq +
|
|
||||||
",status=" + status +
|
|
||||||
",title=" + title +
|
|
||||||
",type=" + type +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.tmerclub.cloud.common.product.vo.SpuVO;
|
import com.tmerclub.cloud.common.product.vo.SpuVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-24 16:38:32
|
* @date 2020-11-24 16:38:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class IndexImgVO extends BaseVO implements Serializable {
|
public class IndexImgVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -41,83 +43,4 @@ public class IndexImgVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "spu信息")
|
@Schema(description = "spu信息")
|
||||||
private SpuVO spu;
|
private SpuVO spu;
|
||||||
|
|
||||||
public Long getImgId() {
|
|
||||||
return imgId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setImgId(Long imgId) {
|
|
||||||
this.imgId = imgId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImgUrl() {
|
|
||||||
return imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgUrl(String imgUrl) {
|
|
||||||
this.imgUrl = imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getImgType() {
|
|
||||||
return imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgType(Integer imgType) {
|
|
||||||
this.imgType = imgType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public SpuVO getSpu() {
|
|
||||||
return spu;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpu(SpuVO spu) {
|
|
||||||
this.spu = spu;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "IndexImgVO{" +
|
|
||||||
"imgId=" + imgId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",imgUrl=" + imgUrl +
|
|
||||||
",status=" + status +
|
|
||||||
",seq=" + seq +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",imgType=" + imgType +
|
|
||||||
",spu=" + spu +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -6,6 +6,7 @@ import com.tmerclub.cloud.api.supplier.vo.SupplierApiDetailVO;
|
|||||||
import com.tmerclub.cloud.api.user.vo.UserApiVO;
|
import com.tmerclub.cloud.api.user.vo.UserApiVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -19,6 +20,7 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-11-25 17:57:56
|
* @date 2020-11-25 17:57:56
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class NoticeVO extends BaseVO implements Serializable {
|
public class NoticeVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -75,166 +77,4 @@ public class NoticeVO extends BaseVO implements Serializable {
|
|||||||
private Date sendTime;
|
private Date sendTime;
|
||||||
|
|
||||||
|
|
||||||
public List<ShopDetailVO> getShopDetailVOList() {
|
|
||||||
return shopDetailVOList;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopDetailVOList(List<ShopDetailVO> shopDetailVOList) {
|
|
||||||
this.shopDetailVOList = shopDetailVOList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<UserApiVO> getUserDtailList() {
|
|
||||||
return userDtailList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserDtailList(List<UserApiVO> userDtailList) {
|
|
||||||
this.userDtailList = userDtailList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<SupplierApiDetailVO> getSupplierDetailList() {
|
|
||||||
return supplierDetailList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierDetailList(List<SupplierApiDetailVO> supplierDetailList) {
|
|
||||||
this.supplierDetailList = supplierDetailList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getImmediatelySend() {
|
|
||||||
return immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImmediatelySend(Integer immediatelySend) {
|
|
||||||
this.immediatelySend = immediatelySend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getSendTime() {
|
|
||||||
return sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSendTime(Date sendTime) {
|
|
||||||
this.sendTime = sendTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsLearning() {
|
|
||||||
return isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsLearning(Integer isLearning) {
|
|
||||||
this.isLearning = isLearning;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTypes() {
|
|
||||||
return types;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTypes(String types) {
|
|
||||||
this.types = types;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsTop() {
|
|
||||||
return isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsTop(Integer isTop) {
|
|
||||||
this.isTop = isTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPublishTime() {
|
|
||||||
return publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPublishTime(Date publishTime) {
|
|
||||||
this.publishTime = publishTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMultiShopIds() {
|
|
||||||
return multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMultiShopIds(String multiShopIds) {
|
|
||||||
this.multiShopIds = multiShopIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserIds() {
|
|
||||||
return userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserIds(String userIds) {
|
|
||||||
this.userIds = userIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierIds() {
|
|
||||||
return supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierIds(String supplierIds) {
|
|
||||||
this.supplierIds = supplierIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static long getSerialVersionUid() {
|
|
||||||
return serialVersionUID;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "NoticeVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", title='" + title + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", types='" + types + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", isTop=" + isTop +
|
|
||||||
", publishTime=" + publishTime +
|
|
||||||
", isLearning=" + isLearning +
|
|
||||||
", multiShopIds='" + multiShopIds + '\'' +
|
|
||||||
", userIds='" + userIds + '\'' +
|
|
||||||
", supplierIds='" + supplierIds + '\'' +
|
|
||||||
", shopDetailVOList=" + shopDetailVOList +
|
|
||||||
", userDtailList=" + userDtailList +
|
|
||||||
", supplierDetailList=" + supplierDetailList +
|
|
||||||
", immediatelySend=" + immediatelySend +
|
|
||||||
", sendTime=" + sendTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
*
|
*
|
||||||
* @author YXF
|
* @author YXF
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "审核信息")
|
@Schema(description = "审核信息")
|
||||||
public class ShopAuditingInfoVO implements Serializable {
|
public class ShopAuditingInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
@ -56,126 +58,5 @@ public class ShopAuditingInfoVO implements Serializable {
|
|||||||
@Schema(description = "店铺账号")
|
@Schema(description = "店铺账号")
|
||||||
private String mobile;
|
private String mobile;
|
||||||
|
|
||||||
public Long getShopAuditingId() {
|
|
||||||
return shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAuditingId(Long shopAuditingId) {
|
|
||||||
this.shopAuditingId = shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopAddress() {
|
|
||||||
return shopAddress;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAddress(String shopAddress) {
|
|
||||||
this.shopAddress = shopAddress;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getArea() {
|
|
||||||
return area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArea(String area) {
|
|
||||||
this.area = area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopAuditingInfoVO{" +
|
|
||||||
"shopAuditingId=" + shopAuditingId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", status=" + status +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", shopAddress='" + shopAddress + '\'' +
|
|
||||||
", province='" + province + '\'' +
|
|
||||||
", city='" + city + '\'' +
|
|
||||||
", area='" + area + '\'' +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", mobile='" + mobile + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.tmerclub.cloud.api.multishop.vo.ShopDetailVO;
|
import com.tmerclub.cloud.api.multishop.vo.ShopDetailVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-01 17:10:35
|
* @date 2021-02-01 17:10:35
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopAuditingVO extends BaseVO implements Serializable {
|
public class ShopAuditingVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -38,74 +40,5 @@ public class ShopAuditingVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "店铺信息")
|
@Schema(description = "店铺信息")
|
||||||
private ShopDetailVO shopDetail;
|
private ShopDetailVO shopDetail;
|
||||||
|
|
||||||
public Long getShopAuditingId() {
|
|
||||||
return shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopAuditingId(Long shopAuditingId) {
|
|
||||||
this.shopAuditingId = shopAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShopDetailVO getShopDetail() {
|
|
||||||
return shopDetail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopDetail(ShopDetailVO shopDetail) {
|
|
||||||
this.shopDetail = shopDetail;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopAuditingVO{" +
|
|
||||||
"shopAuditingId=" + shopAuditingId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",userId=" + userId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",auditorId=" + auditorId +
|
|
||||||
",status=" + status +
|
|
||||||
",remarks=" + remarks +
|
|
||||||
",shopDetail=" + shopDetail +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/4/26 10:12
|
* @Date 2021/4/26 10:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopBankCardVO implements Serializable {
|
public class ShopBankCardVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +16,7 @@ import java.util.List;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-02-23 14:41:42
|
* @date 2021-02-23 14:41:42
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCollectionVO extends BaseVO implements Serializable {
|
public class ShopCollectionVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -45,91 +47,5 @@ public class ShopCollectionVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "设为主页的h5装修id")
|
@Schema(description = "设为主页的h5装修id")
|
||||||
private Long renovationId;
|
private Long renovationId;
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<SpuSearchVO> getSpuSearchList() {
|
|
||||||
return spuSearchList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuSearchList(List<SpuSearchVO> spuSearchList) {
|
|
||||||
this.spuSearchList = spuSearchList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionId() {
|
|
||||||
return collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionId(Long collectionId) {
|
|
||||||
this.collectionId = collectionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRenovationId() {
|
|
||||||
return renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationId(Long renovationId) {
|
|
||||||
this.renovationId = renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCollectionVO{" +
|
|
||||||
"collectionId=" + collectionId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", type=" + type +
|
|
||||||
", collectionNum=" + collectionNum +
|
|
||||||
", spuSearchList=" + spuSearchList +
|
|
||||||
", renovationId=" + renovationId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,7 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author chiley
|
* @author chiley
|
||||||
* @date 2022/9/1 15:59
|
* @date 2022/9/1 15:59
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompanyAuditingVO extends BaseVO implements Serializable {
|
public class ShopCompanyAuditingVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -75,99 +76,4 @@ public class ShopCompanyAuditingVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "工商信息")
|
@Schema(description = "工商信息")
|
||||||
private ShopCompanyVO shopCompanyVO;
|
private ShopCompanyVO shopCompanyVO;
|
||||||
|
|
||||||
public Long getCompanyAuditingId() {
|
|
||||||
return companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCompanyAuditingId(Long companyAuditingId) {
|
|
||||||
this.companyAuditingId = companyAuditingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCompanyId() {
|
|
||||||
return shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyId(Long shopCompanyId) {
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShopCompanyVO getShopCompanyVO() {
|
|
||||||
return shopCompanyVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyVO(ShopCompanyVO shopCompanyVO) {
|
|
||||||
this.shopCompanyVO = shopCompanyVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompanyAuditingVO{" +
|
|
||||||
"companyAuditingId=" + companyAuditingId +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopCompanyId=" + shopCompanyId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", shopCompanyVO=" + shopCompanyVO +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.util.Date;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/4/25 15:55
|
* @Date 2021/4/25 15:55
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopCompanyVO extends BaseVO implements Serializable {
|
public class ShopCompanyVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -75,180 +77,4 @@ public class ShopCompanyVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "最新工商信息状态")
|
@Schema(description = "最新工商信息状态")
|
||||||
private Integer newStatus;
|
private Integer newStatus;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCompanyId() {
|
|
||||||
return shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCompanyId(Long shopCompanyId) {
|
|
||||||
this.shopCompanyId = shopCompanyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCreditCode() {
|
|
||||||
return creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreditCode(String creditCode) {
|
|
||||||
this.creditCode = creditCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFirmName() {
|
|
||||||
return firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirmName(String firmName) {
|
|
||||||
this.firmName = firmName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getResidence() {
|
|
||||||
return residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setResidence(String residence) {
|
|
||||||
this.residence = residence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRepresentative() {
|
|
||||||
return representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRepresentative(String representative) {
|
|
||||||
this.representative = representative;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalIds() {
|
|
||||||
return legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalIds(String legalIds) {
|
|
||||||
this.legalIds = legalIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLegalPhone() {
|
|
||||||
return legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLegalPhone(String legalPhone) {
|
|
||||||
this.legalPhone = legalPhone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getCapital() {
|
|
||||||
return capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCapital(Double capital) {
|
|
||||||
this.capital = capital;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getFoundTime() {
|
|
||||||
return foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFoundTime(Date foundTime) {
|
|
||||||
this.foundTime = foundTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessScope() {
|
|
||||||
return businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessScope(String businessScope) {
|
|
||||||
this.businessScope = businessScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBusinessLicense() {
|
|
||||||
return businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBusinessLicense(String businessLicense) {
|
|
||||||
this.businessLicense = businessLicense;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardFront() {
|
|
||||||
return identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardFront(String identityCardFront) {
|
|
||||||
this.identityCardFront = identityCardFront;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIdentityCardLater() {
|
|
||||||
return identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardLater(String identityCardLater) {
|
|
||||||
this.identityCardLater = identityCardLater;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getEdit() {
|
|
||||||
return edit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEdit(Boolean edit) {
|
|
||||||
this.edit = edit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewStatus() {
|
|
||||||
return newStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewStatus(Integer newStatus) {
|
|
||||||
this.newStatus = newStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopCompanyVO{" +
|
|
||||||
"shopCompanyId=" + shopCompanyId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", creditCode='" + creditCode + '\'' +
|
|
||||||
", firmName='" + firmName + '\'' +
|
|
||||||
", residence='" + residence + '\'' +
|
|
||||||
", representative='" + representative + '\'' +
|
|
||||||
", legalIds='" + legalIds + '\'' +
|
|
||||||
", legalPhone='" + legalPhone + '\'' +
|
|
||||||
", capital=" + capital +
|
|
||||||
", foundTime=" + foundTime +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", businessScope='" + businessScope + '\'' +
|
|
||||||
", businessLicense='" + businessLicense + '\'' +
|
|
||||||
", identityCardFront='" + identityCardFront + '\'' +
|
|
||||||
", identityCardLater='" + identityCardLater + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", edit=" + edit +
|
|
||||||
", newStatus=" + newStatus +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +16,7 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopDetailAppVO extends BaseVO implements Serializable {
|
public class ShopDetailAppVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,119 +58,5 @@ public class ShopDetailAppVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "是否优选好店 1.是 0.不是")
|
@Schema(description = "是否优选好店 1.是 0.不是")
|
||||||
private String isPreferred;
|
private String isPreferred;
|
||||||
|
|
||||||
public String getIsPreferred() {
|
|
||||||
return isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreferred(String isPreferred) {
|
|
||||||
this.isPreferred = isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNoticeMobile() {
|
|
||||||
return noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNoticeMobile(String noticeMobile) {
|
|
||||||
this.noticeMobile = noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<SpuSearchVO> getSpuList() {
|
|
||||||
return spuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuList(List<SpuSearchVO> spuList) {
|
|
||||||
this.spuList = spuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobileBackgroundPic() {
|
|
||||||
return mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobileBackgroundPic(String mobileBackgroundPic) {
|
|
||||||
this.mobileBackgroundPic = mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcBackgroundPic() {
|
|
||||||
return pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcBackgroundPic(String pcBackgroundPic) {
|
|
||||||
this.pcBackgroundPic = pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopDetailAppVO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", type=" + type +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", noticeMobile='" + noticeMobile + '\'' +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", spuList=" + spuList +
|
|
||||||
", collectionNum=" + collectionNum +
|
|
||||||
", mobileBackgroundPic='" + mobileBackgroundPic + '\'' +
|
|
||||||
", pcBackgroundPic='" + pcBackgroundPic + '\'' +
|
|
||||||
", isPreferred='" + isPreferred + '\'' +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-02-05 15:36:12
|
* @date 2021-02-05 15:36:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopExtensionVO extends BaseVO implements Serializable {
|
public class ShopExtensionVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -27,47 +29,5 @@ public class ShopExtensionVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "店铺收藏数量")
|
@Schema(description = "店铺收藏数量")
|
||||||
private Long collectionNum;
|
private Long collectionNum;
|
||||||
|
|
||||||
public Long getShopExtensionId() {
|
|
||||||
return shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopExtensionId(Long shopExtensionId) {
|
|
||||||
this.shopExtensionId = shopExtensionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSaleNum() {
|
|
||||||
return saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSaleNum(Integer saleNum) {
|
|
||||||
this.saleNum = saleNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopExtensionVO{" +
|
|
||||||
"shopExtensionId=" + shopExtensionId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",saleNum=" + saleNum +
|
|
||||||
",collectionNum=" + collectionNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.Date;
|
|||||||
* 店铺的头信息
|
* 店铺的头信息
|
||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopHeadInfoVO implements Serializable {
|
public class ShopHeadInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -60,144 +62,4 @@ public class ShopHeadInfoVO implements Serializable {
|
|||||||
@Schema(description = "主页装修id")
|
@Schema(description = "主页装修id")
|
||||||
private Long renovationId;
|
private Long renovationId;
|
||||||
|
|
||||||
public Date getContractStartTime() {
|
|
||||||
return contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractStartTime(Date contractStartTime) {
|
|
||||||
this.contractStartTime = contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractEndTime() {
|
|
||||||
return contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractEndTime(Date contractEndTime) {
|
|
||||||
this.contractEndTime = contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobileBackgroundPic() {
|
|
||||||
return mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobileBackgroundPic(String mobileBackgroundPic) {
|
|
||||||
this.mobileBackgroundPic = mobileBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcBackgroundPic() {
|
|
||||||
return pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcBackgroundPic(String pcBackgroundPic) {
|
|
||||||
this.pcBackgroundPic = pcBackgroundPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOwnerUserId() {
|
|
||||||
return ownerUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOwnerUserId(Long ownerUserId) {
|
|
||||||
this.ownerUserId = ownerUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIntro() {
|
|
||||||
return intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIntro(String intro) {
|
|
||||||
this.intro = intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNoticeMobile() {
|
|
||||||
return noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNoticeMobile(String noticeMobile) {
|
|
||||||
this.noticeMobile = noticeMobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCollectionNum() {
|
|
||||||
return collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCollectionNum(Long collectionNum) {
|
|
||||||
this.collectionNum = collectionNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreferred() {
|
|
||||||
return isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreferred(Integer isPreferred) {
|
|
||||||
this.isPreferred = isPreferred;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRenovationId() {
|
|
||||||
return renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRenovationId(Long renovationId) {
|
|
||||||
this.renovationId = renovationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopHeadInfoVO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", type=" + type +
|
|
||||||
", ownerUserId=" + ownerUserId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", intro='" + intro + '\'' +
|
|
||||||
", noticeMobile='" + noticeMobile + '\'' +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", collectionNum=" + collectionNum +
|
|
||||||
", isPreferred=" + isPreferred +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", mobileBackgroundPic='" + mobileBackgroundPic + '\'' +
|
|
||||||
", pcBackgroundPic='" + pcBackgroundPic + '\'' +
|
|
||||||
", contractStartTime=" + contractStartTime +
|
|
||||||
", contractEndTime=" + contractEndTime +
|
|
||||||
", renovationId=" + renovationId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +9,7 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopRechargeVO implements Serializable {
|
public class ShopRechargeVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -25,27 +27,5 @@ public class ShopRechargeVO implements Serializable {
|
|||||||
this.walletLogId = walletLogId;
|
this.walletLogId = walletLogId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getPayInfo() {
|
|
||||||
return payInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayInfo(String payInfo) {
|
|
||||||
this.payInfo = payInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getWalletLogId() {
|
|
||||||
return walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWalletLogId(Long walletLogId) {
|
|
||||||
this.walletLogId = walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopRechargeVO{" +
|
|
||||||
"payInfo='" + payInfo + '\'' +
|
|
||||||
", walletLogId=" + walletLogId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.Date;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/7/15 16:42
|
* @Date 2021/7/15 16:42
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopStatusInfoVO implements Serializable {
|
public class ShopStatusInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -32,63 +34,5 @@ public class ShopStatusInfoVO implements Serializable {
|
|||||||
@Schema(description = "签约终止时间")
|
@Schema(description = "签约终止时间")
|
||||||
private Date contractEndTime;
|
private Date contractEndTime;
|
||||||
|
|
||||||
public Integer getAccountStatus() {
|
|
||||||
return accountStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccountStatus(Integer accountStatus) {
|
|
||||||
this.accountStatus = accountStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getShopStatus() {
|
|
||||||
return shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopStatus(Integer shopStatus) {
|
|
||||||
this.shopStatus = shopStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOfflineStatus() {
|
|
||||||
return offlineStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOfflineStatus(Integer offlineStatus) {
|
|
||||||
this.offlineStatus = offlineStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOfflineReason() {
|
|
||||||
return offlineReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOfflineReason(String offlineReason) {
|
|
||||||
this.offlineReason = offlineReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractStartTime() {
|
|
||||||
return contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractStartTime(Date contractStartTime) {
|
|
||||||
this.contractStartTime = contractStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getContractEndTime() {
|
|
||||||
return contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContractEndTime(Date contractEndTime) {
|
|
||||||
this.contractEndTime = contractEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopStatusInfoVO{" +
|
|
||||||
"accountStatus=" + accountStatus +
|
|
||||||
", shopStatus=" + shopStatus +
|
|
||||||
", offlineStatus=" + offlineStatus +
|
|
||||||
", offlineReason='" + offlineReason + '\'' +
|
|
||||||
", contractStartTime=" + contractStartTime +
|
|
||||||
", contractEndTime=" + contractEndTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2022-06-22 17:09:12
|
* @date 2022-06-22 17:09:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -40,81 +42,5 @@ public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "代销设置类型为1才有:供货价高于代销价时是否自动下架:1.是,0.否")
|
@Schema(description = "代销设置类型为1才有:供货价高于代销价时是否自动下架:1.是,0.否")
|
||||||
private Integer automaticOff;
|
private Integer automaticOff;
|
||||||
|
|
||||||
public Integer getAutomaticOff() {
|
|
||||||
return automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAutomaticOff(Integer automaticOff) {
|
|
||||||
this.automaticOff = automaticOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderShape() {
|
|
||||||
return orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderShape(Integer orderShape) {
|
|
||||||
this.orderShape = orderShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopSubstituteSalesId() {
|
|
||||||
return shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopSubstituteSalesId(Long shopSubstituteSalesId) {
|
|
||||||
this.shopSubstituteSalesId = shopSubstituteSalesId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesType() {
|
|
||||||
return salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesType(Integer salesType) {
|
|
||||||
this.salesType = salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesPriceType() {
|
|
||||||
return salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPriceType(Integer salesPriceType) {
|
|
||||||
this.salesPriceType = salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSalesPrice() {
|
|
||||||
return salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPrice(Long salesPrice) {
|
|
||||||
this.salesPrice = salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getModifier() {
|
|
||||||
return modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModifier(Long modifier) {
|
|
||||||
this.modifier = modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSubstituteSalesVO{" +
|
|
||||||
"shopSubstituteSalesId=" + shopSubstituteSalesId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", salesType=" + salesType +
|
|
||||||
", salesPriceType=" + salesPriceType +
|
|
||||||
", salesPrice=" + salesPrice +
|
|
||||||
", orderShape=" + orderShape +
|
|
||||||
", modifier=" + modifier +
|
|
||||||
", automaticOff=" + automaticOff +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
* @date 2022-08-12 14:04:57
|
* @date 2022-08-12 14:04:57
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopTemplateVO extends BaseVO implements Serializable {
|
public class ShopTemplateVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,74 +39,5 @@ public class ShopTemplateVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getTemplateId() {
|
|
||||||
return templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTemplateId(Long templateId) {
|
|
||||||
this.templateId = templateId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImage() {
|
|
||||||
return image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImage(String image) {
|
|
||||||
this.image = image;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopTemplateVO{" +
|
|
||||||
"templateId=" + templateId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",name=" + name +
|
|
||||||
",content=" + content +
|
|
||||||
",image=" + image +
|
|
||||||
",type=" + type +
|
|
||||||
",remark=" + remark +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/2
|
* @date 2020/9/2
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopUserSimpleVO implements Serializable {
|
public class ShopUserSimpleVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -41,72 +43,5 @@ public class ShopUserSimpleVO implements Serializable {
|
|||||||
private String userName;
|
private String userName;
|
||||||
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserName() {
|
|
||||||
return userName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserName(String userName) {
|
|
||||||
this.userName = userName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAvatar() {
|
|
||||||
return avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAvatar(String avatar) {
|
|
||||||
this.avatar = avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsAdmin() {
|
|
||||||
return isAdmin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsAdmin(Integer isAdmin) {
|
|
||||||
this.isAdmin = isAdmin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPassShop() {
|
|
||||||
return isPassShop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPassShop(Integer isShop) {
|
|
||||||
this.isPassShop = isShop;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTenantId() {
|
|
||||||
return tenantId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTenantId(Long tenantId) {
|
|
||||||
this.tenantId = tenantId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopUserSimpleVO{" +
|
|
||||||
"shopName='" + shopName + '\'' +
|
|
||||||
", avatar='" + avatar + '\'' +
|
|
||||||
", isAdmin=" + isAdmin +
|
|
||||||
", isPassShop=" + isPassShop +
|
|
||||||
", tenantId=" + tenantId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", userName='" + userName + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo;
|
package com.tmerclub.cloud.multishop.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/2
|
* @date 2020/9/2
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopUserVO implements Serializable {
|
public class ShopUserVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -59,126 +61,4 @@ public class ShopUserVO implements Serializable {
|
|||||||
@Schema(description = "是否是管理员")
|
@Schema(description = "是否是管理员")
|
||||||
private Integer isAdmin;
|
private Integer isAdmin;
|
||||||
|
|
||||||
public Long getShopUserId() {
|
|
||||||
return shopUserId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopUserId(Long shopUserId) {
|
|
||||||
this.shopUserId = shopUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhoneNum() {
|
|
||||||
return phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhoneNum(String phoneNum) {
|
|
||||||
this.phoneNum = phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasAccount() {
|
|
||||||
return hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasAccount(Integer hasAccount) {
|
|
||||||
this.hasAccount = hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getRoleIds() {
|
|
||||||
return roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRoleIds(List<Long> roleIds) {
|
|
||||||
this.roleIds = roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEmail() {
|
|
||||||
return email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEmail(String email) {
|
|
||||||
this.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsAdmin() {
|
|
||||||
return isAdmin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsAdmin(Integer isAdmin) {
|
|
||||||
this.isAdmin = isAdmin;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopUserVO{" +
|
|
||||||
"shopUserId=" + shopUserId +
|
|
||||||
", nickName='" + nickName + '\'' +
|
|
||||||
", code='" + code + '\'' +
|
|
||||||
", phoneNum='" + phoneNum + '\'' +
|
|
||||||
", hasAccount=" + hasAccount +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", roleIds=" + roleIds +
|
|
||||||
", username='" + username + '\'' +
|
|
||||||
", password='" + password + '\'' +
|
|
||||||
", email='" + email + '\'' +
|
|
||||||
", phone='" + phone + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", isAdmin=" + isAdmin +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import com.alibaba.excel.annotation.format.DateTimeFormat;
|
import com.alibaba.excel.annotation.format.DateTimeFormat;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.util.Date;
|
|||||||
* 导出商家余额
|
* 导出商家余额
|
||||||
* @author 菠萝凤梨
|
* @author 菠萝凤梨
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletLogExcelVO implements Serializable {
|
public class ShopWalletLogExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -78,144 +80,4 @@ public class ShopWalletLogExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"店铺结算明细表", "创建时间"})
|
@ExcelProperty({"店铺结算明细表", "创建时间"})
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
public String getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSeq(String seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAmountType() {
|
|
||||||
return amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountType(String amountType) {
|
|
||||||
this.amountType = amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIoType() {
|
|
||||||
return ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIoType(String ioType) {
|
|
||||||
this.ioType = ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getChangeAmount() {
|
|
||||||
return changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChangeAmount(String changeAmount) {
|
|
||||||
this.changeAmount = changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(String orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(String refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserAmount() {
|
|
||||||
return userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAmount(String userAmount) {
|
|
||||||
this.userAmount = userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPlatformAmount() {
|
|
||||||
return platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformAmount(String platformAmount) {
|
|
||||||
this.platformAmount = platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopReduceAmount() {
|
|
||||||
return shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopReduceAmount(String shopReduceAmount) {
|
|
||||||
this.shopReduceAmount = shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(String distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPlatformCommission() {
|
|
||||||
return platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCommission(String platformCommission) {
|
|
||||||
this.platformCommission = platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopPlatformCommission() {
|
|
||||||
return shopPlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopPlatformCommission(String shopPlatformCommission) {
|
|
||||||
this.shopPlatformCommission = shopPlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReasonStr() {
|
|
||||||
return reasonStr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReasonStr(String reasonStr) {
|
|
||||||
this.reasonStr = reasonStr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletLogExcelVO{" +
|
|
||||||
"seq='" + seq + '\'' +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", amountType=" + amountType +
|
|
||||||
", ioType=" + ioType +
|
|
||||||
", changeAmount=" + changeAmount +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", refundId=" + refundId +
|
|
||||||
", userAmount=" + userAmount +
|
|
||||||
", platformAmount=" + platformAmount +
|
|
||||||
", shopReduceAmount=" + shopReduceAmount +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", platformCommission=" + platformCommission +
|
|
||||||
", shopPlatformCommission=" + shopPlatformCommission +
|
|
||||||
", reasonStr='" + reasonStr + '\'' +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.util.Date;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-01-04 13:55:51
|
* @date 2021-01-04 13:55:51
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletLogVO extends BaseVO implements Serializable {
|
public class ShopWalletLogVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -68,166 +70,5 @@ public class ShopWalletLogVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "商家名称")
|
@Schema(description = "商家名称")
|
||||||
private String shopName;
|
private String shopName;
|
||||||
|
|
||||||
public Long getIndex() {
|
|
||||||
return index;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIndex(Long index) {
|
|
||||||
this.index = index;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getWalletLogId() {
|
|
||||||
return walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWalletLogId(Long walletLogId) {
|
|
||||||
this.walletLogId = walletLogId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIoType() {
|
|
||||||
return ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIoType(Integer ioType) {
|
|
||||||
this.ioType = ioType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Date getUpdateTime() {
|
|
||||||
return updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserAmount() {
|
|
||||||
return userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAmount(Long userAmount) {
|
|
||||||
this.userAmount = userAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setUpdateTime(Date updateTime) {
|
|
||||||
this.updateTime = updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAmountType() {
|
|
||||||
return amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountType(Integer amountType) {
|
|
||||||
this.amountType = amountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getChangeAmount() {
|
|
||||||
return changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChangeAmount(Long changeAmount) {
|
|
||||||
this.changeAmount = changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReason() {
|
|
||||||
return reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReason(Integer reason) {
|
|
||||||
this.reason = reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformAmount() {
|
|
||||||
return platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformAmount(Long platformAmount) {
|
|
||||||
this.platformAmount = platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCommission() {
|
|
||||||
return platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCommission(Long platformCommission) {
|
|
||||||
this.platformCommission = platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopReduceAmount() {
|
|
||||||
return shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopReduceAmount(Long shopReduceAmount) {
|
|
||||||
this.shopReduceAmount = shopReduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletLogVO{" +
|
|
||||||
"index=" + index +
|
|
||||||
", walletLogId=" + walletLogId +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", refundId=" + refundId +
|
|
||||||
", ioType=" + ioType +
|
|
||||||
", amountType=" + amountType +
|
|
||||||
", changeAmount=" + changeAmount +
|
|
||||||
", reason=" + reason +
|
|
||||||
", userAmount=" + userAmount +
|
|
||||||
", platformAmount=" + platformAmount +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", platformCommission=" + platformCommission +
|
|
||||||
", shopReduceAmount=" + shopReduceAmount +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +15,7 @@ import java.util.Date;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2021-01-04 13:55:51
|
* @date 2021-01-04 13:55:51
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWalletVO extends BaseVO implements Serializable {
|
public class ShopWalletVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -50,92 +52,4 @@ public class ShopWalletVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "乐观锁")
|
@Schema(description = "乐观锁")
|
||||||
private Long version;
|
private Long version;
|
||||||
|
|
||||||
public Long getShopWalletId() {
|
|
||||||
return shopWalletId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setShopWalletId(Long shopWalletId) {
|
|
||||||
this.shopWalletId = shopWalletId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUnsettledAmount() {
|
|
||||||
return unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnsettledAmount(Long unsettledAmount) {
|
|
||||||
this.unsettledAmount = unsettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSettledAmount() {
|
|
||||||
return settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettledAmount(Long settledAmount) {
|
|
||||||
this.settledAmount = settledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreezeAmount() {
|
|
||||||
return freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreezeAmount(Long freezeAmount) {
|
|
||||||
this.freezeAmount = freezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalSettledAmount() {
|
|
||||||
return totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalSettledAmount(Long totalSettledAmount) {
|
|
||||||
this.totalSettledAmount = totalSettledAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSmsNum() {
|
|
||||||
return smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSmsNum(Integer smsNum) {
|
|
||||||
this.smsNum = smsNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVersion() {
|
|
||||||
return version;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVersion(Long version) {
|
|
||||||
this.version = version;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWalletVO{" +
|
|
||||||
"shopWalletId=" + shopWalletId +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", unsettledAmount=" + unsettledAmount +
|
|
||||||
", settledAmount=" + settledAmount +
|
|
||||||
", freezeAmount=" + freezeAmount +
|
|
||||||
", totalSettledAmount=" + totalSettledAmount +
|
|
||||||
", smsNum=" + smsNum +
|
|
||||||
", version=" + version +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.multishop.vo;
|
|||||||
import com.tmerclub.cloud.api.multishop.vo.ShopBankCardVO;
|
import com.tmerclub.cloud.api.multishop.vo.ShopBankCardVO;
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +16,7 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-06-10 10:28:13
|
* @date 2021-06-10 10:28:13
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ShopWithdrawCashVO extends BaseVO implements Serializable {
|
public class ShopWithdrawCashVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -78,189 +80,4 @@ public class ShopWithdrawCashVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "提现失败原因")
|
@Schema(description = "提现失败原因")
|
||||||
private String payFailMessage;
|
private String payFailMessage;
|
||||||
|
|
||||||
public Long getIndex() {
|
|
||||||
return index;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setIndex(Long index) {
|
|
||||||
this.index = index;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShopBankCardVO getShopBankCardVO() {
|
|
||||||
return shopBankCardVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardVO(ShopBankCardVO shopBankCardVO) {
|
|
||||||
this.shopBankCardVO = shopBankCardVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopLogo() {
|
|
||||||
return shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogo(String shopLogo) {
|
|
||||||
this.shopLogo = shopLogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCashId() {
|
|
||||||
return cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCashId(Long cashId) {
|
|
||||||
this.cashId = cashId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAuditorId() {
|
|
||||||
return auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditorId(Long auditorId) {
|
|
||||||
this.auditorId = auditorId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getAmount() {
|
|
||||||
return amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmount(Double amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getAuditingTime() {
|
|
||||||
return auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditingTime(Date auditingTime) {
|
|
||||||
this.auditingTime = auditingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopRemarks() {
|
|
||||||
return shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRemarks(String shopRemarks) {
|
|
||||||
this.shopRemarks = shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingAccount() {
|
|
||||||
return payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingAccount(String payingAccount) {
|
|
||||||
this.payingAccount = payingAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayingCardNo() {
|
|
||||||
return payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingCardNo(String payingCardNo) {
|
|
||||||
this.payingCardNo = payingCardNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPayingTime() {
|
|
||||||
return payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayingTime(Date payingTime) {
|
|
||||||
this.payingTime = payingTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopBankCardId() {
|
|
||||||
return shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopBankCardId(Long shopBankCardId) {
|
|
||||||
this.shopBankCardId = shopBankCardId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllinpayStatus() {
|
|
||||||
return allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayStatus(Integer allinpayStatus) {
|
|
||||||
this.allinpayStatus = allinpayStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBizOrderNo() {
|
|
||||||
return bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBizOrderNo(String bizOrderNo) {
|
|
||||||
this.bizOrderNo = bizOrderNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayFailMessage() {
|
|
||||||
return payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayFailMessage(String payFailMessage) {
|
|
||||||
this.payFailMessage = payFailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopWithdrawCashVO{" +
|
|
||||||
"index=" + index +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", cashId=" + cashId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", auditorId=" + auditorId +
|
|
||||||
", amount=" + amount +
|
|
||||||
", auditingTime=" + auditingTime +
|
|
||||||
", status=" + status +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", shopRemarks='" + shopRemarks + '\'' +
|
|
||||||
", payingAccount='" + payingAccount + '\'' +
|
|
||||||
", payingCardNo='" + payingCardNo + '\'' +
|
|
||||||
", payingTime=" + payingTime +
|
|
||||||
", shopBankCardId=" + shopBankCardId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", shopLogo='" + shopLogo + '\'' +
|
|
||||||
", shopBankCardVO=" + shopBankCardVO +
|
|
||||||
", allinpayStatus=" + allinpayStatus +
|
|
||||||
", bizOrderNo='" + bizOrderNo + '\'' +
|
|
||||||
", payFailMessage='" + payFailMessage + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo.mongo;
|
package com.tmerclub.cloud.multishop.vo.mongo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @author 菠萝凤梨
|
* @author 菠萝凤梨
|
||||||
*/
|
*/
|
||||||
@Document("shop_wallet_log")
|
@Document("shop_wallet_log")
|
||||||
|
@Data
|
||||||
public class MongoShopWalletLogVO implements Serializable {
|
public class MongoShopWalletLogVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -26,45 +28,4 @@ public class MongoShopWalletLogVO implements Serializable {
|
|||||||
@Schema(description = "收支类型")
|
@Schema(description = "收支类型")
|
||||||
private Integer platformIoType;
|
private Integer platformIoType;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopLogCount() {
|
|
||||||
return shopLogCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopLogCount(Long shopLogCount) {
|
|
||||||
this.shopLogCount = shopLogCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalAmount() {
|
|
||||||
return totalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalAmount(Long totalAmount) {
|
|
||||||
this.totalAmount = totalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlatformIoType() {
|
|
||||||
return platformIoType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformIoType(Integer platformIoType) {
|
|
||||||
this.platformIoType = platformIoType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoShopWalletLogVO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", shopLogCount=" + shopLogCount +
|
|
||||||
", totalAmount=" + totalAmount +
|
|
||||||
", ioType=" + platformIoType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.multishop.vo.mongo;
|
package com.tmerclub.cloud.multishop.vo.mongo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* 商家钱包信息VO
|
* 商家钱包信息VO
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Document("shop_wallet_log")
|
@Document("shop_wallet_log")
|
||||||
public class MongoShopWalletVO implements Serializable {
|
public class MongoShopWalletVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
@ -33,63 +35,4 @@ public class MongoShopWalletVO implements Serializable {
|
|||||||
@Schema(description = "冻结金额(支出)")
|
@Schema(description = "冻结金额(支出)")
|
||||||
private Long outFreezeAmount;
|
private Long outFreezeAmount;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getInUnsettleAmount() {
|
|
||||||
return inUnsettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setInUnsettleAmount(Long inUnsettleAmount) {
|
|
||||||
this.inUnsettleAmount = inUnsettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOutUnsettleAmount() {
|
|
||||||
return outUnsettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOutUnsettleAmount(Long outUnsettleAmount) {
|
|
||||||
this.outUnsettleAmount = outUnsettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalSettleAmount() {
|
|
||||||
return totalSettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalSettleAmount(Long totalSettleAmount) {
|
|
||||||
this.totalSettleAmount = totalSettleAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getInFreezeAmount() {
|
|
||||||
return inFreezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setInFreezeAmount(Long inFreezeAmount) {
|
|
||||||
this.inFreezeAmount = inFreezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOutFreezeAmount() {
|
|
||||||
return outFreezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOutFreezeAmount(Long outFreezeAmount) {
|
|
||||||
this.outFreezeAmount = outFreezeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoShopWalletVO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", inUnsettleAmount=" + inUnsettleAmount +
|
|
||||||
", outUnsettleAmount=" + outUnsettleAmount +
|
|
||||||
", totalSettleAmount=" + totalSettleAmount +
|
|
||||||
", inFreezeAmount=" + inFreezeAmount +
|
|
||||||
", outFreezeAmount=" + outFreezeAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ package com.tmerclub.cloud.platform.dto;
|
|||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020/12/22
|
* @date 2020/12/22
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ChangeAccountDTO implements Serializable {
|
public class ChangeAccountDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,63 +38,4 @@ public class ChangeAccountDTO implements Serializable {
|
|||||||
@Schema(description = "手机号")
|
@Schema(description = "手机号")
|
||||||
private String phone;
|
private String phone;
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsername(String username) {
|
|
||||||
this.username = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getEmail() {
|
|
||||||
return email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEmail(String email) {
|
|
||||||
this.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhone() {
|
|
||||||
return phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhone(String phone) {
|
|
||||||
this.phone = phone;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ChangeAccountDTO{" +
|
|
||||||
"userId=" + userId +
|
|
||||||
", username='" + username + '\'' +
|
|
||||||
", password='" + password + '\'' +
|
|
||||||
", status=" + status +
|
|
||||||
", email='" + email + '\'' +
|
|
||||||
", phone='" + phone + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -5,6 +5,7 @@ import com.tmerclub.cloud.common.util.PriceUtil;
|
|||||||
import jakarta.validation.constraints.DecimalMax;
|
import jakarta.validation.constraints.DecimalMax;
|
||||||
import jakarta.validation.constraints.Max;
|
import jakarta.validation.constraints.Max;
|
||||||
import jakarta.validation.constraints.Min;
|
import jakarta.validation.constraints.Min;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -16,6 +17,7 @@ import java.util.List;
|
|||||||
* @author cl
|
* @author cl
|
||||||
* @date 2021-08-06 09:25:10
|
* @date 2021-08-06 09:25:10
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class DistributionConfigDTO implements Serializable {
|
public class DistributionConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -93,144 +95,5 @@ public class DistributionConfigDTO implements Serializable {
|
|||||||
@Min(value = 0, message = "提现次数不能小于0")
|
@Min(value = 0, message = "提现次数不能小于0")
|
||||||
private Integer number;
|
private Integer number;
|
||||||
|
|
||||||
public Integer getWithdrawal() {
|
|
||||||
return withdrawal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWithdrawal(Integer withdrawal) {
|
|
||||||
this.withdrawal = withdrawal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDistributionSwitch() {
|
|
||||||
return distributionSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionSwitch(Integer distributionSwitch) {
|
|
||||||
this.distributionSwitch = distributionSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAttribution() {
|
|
||||||
return attribution;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAttribution(Integer attribution) {
|
|
||||||
this.attribution = attribution;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAutoCheck() {
|
|
||||||
return autoCheck;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAutoCheck(Integer autoCheck) {
|
|
||||||
this.autoCheck = autoCheck;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getSpuIdList() {
|
|
||||||
return spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuIdList(List<Long> spuIdList) {
|
|
||||||
this.spuIdList = spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getExpenseAmount() {
|
|
||||||
return expenseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpenseAmount(BigDecimal expenseAmount) {
|
|
||||||
this.expenseAmount = expenseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExpenseNumber() {
|
|
||||||
return expenseNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpenseNumber(Integer expenseNumber) {
|
|
||||||
this.expenseNumber = expenseNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getRealName() {
|
|
||||||
return realName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRealName(Boolean realName) {
|
|
||||||
this.realName = realName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getIdentityCardPic() {
|
|
||||||
return identityCardPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardPic(Boolean identityCardPic) {
|
|
||||||
this.identityCardPic = identityCardPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getIdentityCardNumber() {
|
|
||||||
return identityCardNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardNumber(Boolean identityCardNumber) {
|
|
||||||
this.identityCardNumber = identityCardNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFrequency() {
|
|
||||||
return frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFrequency(Integer frequency) {
|
|
||||||
this.frequency = frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAmountMax() {
|
|
||||||
return amountMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountMax(BigDecimal amountMax) {
|
|
||||||
this.amountMax = amountMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAmountMin() {
|
|
||||||
return amountMin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountMin(BigDecimal amountMin) {
|
|
||||||
this.amountMin = amountMin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPaymentExplain() {
|
|
||||||
return paymentExplain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaymentExplain(String paymentExplain) {
|
|
||||||
this.paymentExplain = paymentExplain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNumber() {
|
|
||||||
return number;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNumber(Integer number) {
|
|
||||||
this.number = number;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "DistributionConfigDTO{" +
|
|
||||||
"distributionSwitch=" + distributionSwitch +
|
|
||||||
", attribution=" + attribution +
|
|
||||||
", autoCheck=" + autoCheck +
|
|
||||||
", spuIdList=" + spuIdList +
|
|
||||||
", expenseAmount=" + expenseAmount +
|
|
||||||
", expenseNumber=" + expenseNumber +
|
|
||||||
", realName=" + realName +
|
|
||||||
", identityCardPic=" + identityCardPic +
|
|
||||||
", identityCardNumber=" + identityCardNumber +
|
|
||||||
", withdrawal=" + withdrawal +
|
|
||||||
", frequency=" + frequency +
|
|
||||||
", amountMax=" + amountMax +
|
|
||||||
", amountMin=" + amountMin +
|
|
||||||
", paymentExplain='" + paymentExplain + '\'' +
|
|
||||||
", number=" + number +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @author cl
|
* @author cl
|
||||||
* @date 2021-08-06 09:26:11
|
* @date 2021-08-06 09:26:11
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class DistributionRecruitConfigDTO implements Serializable {
|
public class DistributionRecruitConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -43,54 +45,4 @@ public class DistributionRecruitConfigDTO implements Serializable {
|
|||||||
private Integer state;
|
private Integer state;
|
||||||
|
|
||||||
|
|
||||||
public String getPic() {
|
|
||||||
return pic;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPic(String pic) {
|
|
||||||
this.pic = pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUrl() {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUrl(String url) {
|
|
||||||
this.url = url;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getState() {
|
|
||||||
return state;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setState(Integer state) {
|
|
||||||
this.state = state;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "DistributionRecruitConfigDTO{" +
|
|
||||||
"pic='" + pic + '\'' +
|
|
||||||
", title='" + title + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", url='" + url + '\'' +
|
|
||||||
", state=" + state +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* 成长配置信息
|
* 成长配置信息
|
||||||
* @author lhd
|
* @author lhd
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class GrowthConfigDTO implements Serializable {
|
public class GrowthConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -22,36 +25,4 @@ public class GrowthConfigDTO implements Serializable {
|
|||||||
|
|
||||||
private Double buyOrder;
|
private Double buyOrder;
|
||||||
|
|
||||||
public Boolean getShopGrowthSwitch() {
|
|
||||||
return shopGrowthSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopGrowthSwitch(Boolean shopGrowthSwitch) {
|
|
||||||
this.shopGrowthSwitch = shopGrowthSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getBuyPrice() {
|
|
||||||
return buyPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBuyPrice(Double buyPrice) {
|
|
||||||
this.buyPrice = buyPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getBuyOrder() {
|
|
||||||
return buyOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBuyOrder(Double buyOrder) {
|
|
||||||
this.buyOrder = buyOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GrowthConfigDTO{" +
|
|
||||||
"shopGrowthSwitch=" + shopGrowthSwitch +
|
|
||||||
", buyPrice=" + buyPrice +
|
|
||||||
", buyOrder=" + buyOrder +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-15 17:46:26
|
* @date 2021-01-15 17:46:26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class OfflineHandleEventItemDTO implements Serializable {
|
public class OfflineHandleEventItemDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -33,63 +35,4 @@ public class OfflineHandleEventItemDTO implements Serializable {
|
|||||||
@Schema(description = "审核时间")
|
@Schema(description = "审核时间")
|
||||||
private Date auditTime;
|
private Date auditTime;
|
||||||
|
|
||||||
public Long getEventItemId() {
|
|
||||||
return eventItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEventItemId(Long eventItemId) {
|
|
||||||
this.eventItemId = eventItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getEventId() {
|
|
||||||
return eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEventId(Long eventId) {
|
|
||||||
this.eventId = eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReapplyReason() {
|
|
||||||
return reapplyReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReapplyReason(String reapplyReason) {
|
|
||||||
this.reapplyReason = reapplyReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRefuseReason() {
|
|
||||||
return refuseReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefuseReason(String refuseReason) {
|
|
||||||
this.refuseReason = refuseReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getReapplyTime() {
|
|
||||||
return reapplyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReapplyTime(Date reapplyTime) {
|
|
||||||
this.reapplyTime = reapplyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getAuditTime() {
|
|
||||||
return auditTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditTime(Date auditTime) {
|
|
||||||
this.auditTime = auditTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OfflineHandleEventItemDTO{" +
|
|
||||||
"eventItemId=" + eventItemId +
|
|
||||||
",eventId=" + eventId +
|
|
||||||
",reapplyReason=" + reapplyReason +
|
|
||||||
",refuseReason=" + refuseReason +
|
|
||||||
",reapplyTime=" + reapplyTime +
|
|
||||||
",auditTime=" + auditTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +10,7 @@ import java.io.Serializable;
|
|||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-03-21
|
* @date 2023-03-21
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class PublicBankDTO implements Serializable {
|
public class PublicBankDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,36 +23,4 @@ public class PublicBankDTO implements Serializable {
|
|||||||
@Schema(description = "银行代码")
|
@Schema(description = "银行代码")
|
||||||
private String bankCode;
|
private String bankCode;
|
||||||
|
|
||||||
public Long getBankId() {
|
|
||||||
return bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankId(Long bankId) {
|
|
||||||
this.bankId = bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCode() {
|
|
||||||
return bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCode(String bankCode) {
|
|
||||||
this.bankCode = bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PublicBankDTO{" +
|
|
||||||
"bankId=" + bankId +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", bankCode='" + bankCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -10,6 +12,7 @@ import java.util.List;
|
|||||||
* 积分配置信息
|
* 积分配置信息
|
||||||
* @author lhd
|
* @author lhd
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ScoreConfigDTO implements Serializable {
|
public class ScoreConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -67,108 +70,4 @@ public class ScoreConfigDTO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Double useRatioLimit;
|
private Double useRatioLimit;
|
||||||
|
|
||||||
public Double getUseRatioLimit() {
|
|
||||||
return useRatioLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUseRatioLimit(Double useRatioLimit) {
|
|
||||||
this.useRatioLimit = useRatioLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getGetRatioLimit() {
|
|
||||||
return getRatioLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGetRatioLimit(Double getRatioLimit) {
|
|
||||||
this.getRatioLimit = getRatioLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamKey() {
|
|
||||||
return paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamKey(String paramKey) {
|
|
||||||
this.paramKey = paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamValue() {
|
|
||||||
return paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamValue(String paramValue) {
|
|
||||||
this.paramValue = paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSignInScoreString() {
|
|
||||||
return signInScoreString;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSignInScoreString(String signInScoreString) {
|
|
||||||
this.signInScoreString = signInScoreString;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Integer> getSignInScore() {
|
|
||||||
return signInScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSignInScore(List<Integer> signInScore) {
|
|
||||||
this.signInScore = signInScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRegisterScore() {
|
|
||||||
return registerScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRegisterScore(Long registerScore) {
|
|
||||||
this.registerScore = registerScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getShoppingScoreSwitch() {
|
|
||||||
return shoppingScoreSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShoppingScoreSwitch(Boolean shoppingScoreSwitch) {
|
|
||||||
this.shoppingScoreSwitch = shoppingScoreSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShoppingGetScore() {
|
|
||||||
return shoppingGetScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShoppingGetScore(Long shoppingGetScore) {
|
|
||||||
this.shoppingGetScore = shoppingGetScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShoppingUseScoreRatio() {
|
|
||||||
return shoppingUseScoreRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShoppingUseScoreRatio(Long shoppingUseScoreRatio) {
|
|
||||||
this.shoppingUseScoreRatio = shoppingUseScoreRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ScoreConfigVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", paramKey='" + paramKey + '\'' +
|
|
||||||
", paramValue='" + paramValue + '\'' +
|
|
||||||
", signInScoreString='" + signInScoreString + '\'' +
|
|
||||||
", signInScore=" + signInScore +
|
|
||||||
", registerScore=" + registerScore +
|
|
||||||
", shoppingScoreSwitch=" + shoppingScoreSwitch +
|
|
||||||
", shoppingGetScore=" + shoppingGetScore +
|
|
||||||
", shoppingUseScoreRatio=" + shoppingUseScoreRatio +
|
|
||||||
", useRatioLimit=" + useRatioLimit +
|
|
||||||
", getRatioLimit=" + getRatioLimit +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020/12/30
|
* @date 2020/12/30
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ScoreExpireConfigDTO implements Serializable {
|
public class ScoreExpireConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -22,27 +25,4 @@ public class ScoreExpireConfigDTO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Boolean scoreExpireSwitch;
|
private Boolean scoreExpireSwitch;
|
||||||
|
|
||||||
public Integer getExpireYear() {
|
|
||||||
return expireYear;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpireYear(Integer expireYear) {
|
|
||||||
this.expireYear = expireYear;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getScoreExpireSwitch() {
|
|
||||||
return scoreExpireSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setScoreExpireSwitch(Boolean scoreExpireSwitch) {
|
|
||||||
this.scoreExpireSwitch = scoreExpireSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ScoreExpireConfigVO{" +
|
|
||||||
"expireYear=" + expireYear +
|
|
||||||
", scoreExpireSwitch=" + scoreExpireSwitch +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.util.List;
|
|||||||
* 系统密钥DTO
|
* 系统密钥DTO
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysAccessKeyDTO implements Serializable {
|
public class SysAccessKeyDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -44,95 +46,4 @@ public class SysAccessKeyDTO implements Serializable {
|
|||||||
@Schema(description = "菜单资源id")
|
@Schema(description = "菜单资源id")
|
||||||
private List<Long> menuPermissionId;
|
private List<Long> menuPermissionId;
|
||||||
|
|
||||||
public List<Long> getMenuPermissionId() {
|
|
||||||
return menuPermissionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMenuPermissionId(List<Long> menuPermissionId) {
|
|
||||||
this.menuPermissionId = menuPermissionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSysType() {
|
|
||||||
return sysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysType(Integer sysType) {
|
|
||||||
this.sysType = sysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPremType() {
|
|
||||||
return premType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPremType(Integer premType) {
|
|
||||||
this.premType = premType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUsabilityShopId() {
|
|
||||||
return usabilityShopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUsabilityShopId(Long usabilityShopId) {
|
|
||||||
this.usabilityShopId = usabilityShopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getMenuIdList() {
|
|
||||||
return menuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMenuIdList(List<Long> menuIdList) {
|
|
||||||
this.menuIdList = menuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSysAccessKeyId() {
|
|
||||||
return sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysAccessKeyId(Long sysAccessKeyId) {
|
|
||||||
this.sysAccessKeyId = sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAccessId() {
|
|
||||||
return accessId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccessId(String accessId) {
|
|
||||||
this.accessId = accessId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAccessKey() {
|
|
||||||
return accessKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAccessKey(String accessKey) {
|
|
||||||
this.accessKey = accessKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysAccessKeyDTO{" +
|
|
||||||
"sysAccessKeyId=" + sysAccessKeyId +
|
|
||||||
",name=" + name +
|
|
||||||
",remark=" + remark +
|
|
||||||
",accessId=" + accessId +
|
|
||||||
",accessKey=" + accessKey +
|
|
||||||
",menuPermissionId=" + menuPermissionId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.dto;
|
package com.tmerclub.cloud.platform.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020-12-23 16:27:57
|
* @date 2020-12-23 16:27:57
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysConfigDTO implements Serializable {
|
public class SysConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -26,45 +28,4 @@ public class SysConfigDTO implements Serializable {
|
|||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamKey() {
|
|
||||||
return paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamKey(String paramKey) {
|
|
||||||
this.paramKey = paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamValue() {
|
|
||||||
return paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamValue(String paramValue) {
|
|
||||||
this.paramValue = paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysConfigVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
",paramKey=" + paramKey +
|
|
||||||
",paramValue=" + paramValue +
|
|
||||||
",remark=" + remark +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.platform.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.util.List;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020/9/8
|
* @date 2020/9/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysUserDTO implements Serializable {
|
public class SysUserDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -38,72 +40,4 @@ public class SysUserDTO implements Serializable {
|
|||||||
@Schema(description = "店铺id")
|
@Schema(description = "店铺id")
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAvatar() {
|
|
||||||
return avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAvatar(String avatar) {
|
|
||||||
this.avatar = avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhoneNum() {
|
|
||||||
return phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhoneNum(String phoneNum) {
|
|
||||||
this.phoneNum = phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSysUserId() {
|
|
||||||
return sysUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysUserId(Long sysUserId) {
|
|
||||||
this.sysUserId = sysUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getRoleIds() {
|
|
||||||
return roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRoleIds(List<Long> roleIds) {
|
|
||||||
this.roleIds = roleIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysUserDTO{" +
|
|
||||||
"sysUserId=" + sysUserId +
|
|
||||||
", nickName='" + nickName + '\'' +
|
|
||||||
", avatar='" + avatar + '\'' +
|
|
||||||
", code='" + code + '\'' +
|
|
||||||
", phoneNum='" + phoneNum + '\'' +
|
|
||||||
", roleIds=" + roleIds +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.platform.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
*
|
*
|
||||||
* @author Orange
|
* @author Orange
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class WebConfigDTO implements Serializable {
|
public class WebConfigDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -92,234 +94,4 @@ public class WebConfigDTO implements Serializable {
|
|||||||
@Schema(description = "PC-底部公司地址等信息-英文")
|
@Schema(description = "PC-底部公司地址等信息-英文")
|
||||||
private String pcCompanyInfoEn;
|
private String pcCompanyInfoEn;
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getConfigType() {
|
|
||||||
return configType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConfigType(Integer configType) {
|
|
||||||
this.configType = configType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsActivity() {
|
|
||||||
return isActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsActivity(Integer isActivity) {
|
|
||||||
this.isActivity = isActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLoginLogoImg() {
|
|
||||||
return loginLogoImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoginLogoImg(String loginLogoImg) {
|
|
||||||
this.loginLogoImg = loginLogoImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLoginBgImg() {
|
|
||||||
return loginBgImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoginBgImg(String loginBgImg) {
|
|
||||||
this.loginBgImg = loginBgImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCopyrightCn() {
|
|
||||||
return copyrightCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCopyrightCn(String copyrightCn) {
|
|
||||||
this.copyrightCn = copyrightCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCopyrightEn() {
|
|
||||||
return copyrightEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCopyrightEn(String copyrightEn) {
|
|
||||||
this.copyrightEn = copyrightEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleContentCn() {
|
|
||||||
return titleContentCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleContentCn(String titleContentCn) {
|
|
||||||
this.titleContentCn = titleContentCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleContentEn() {
|
|
||||||
return titleContentEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleContentEn(String titleContentEn) {
|
|
||||||
this.titleContentEn = titleContentEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleImg() {
|
|
||||||
return titleImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleImg(String titleImg) {
|
|
||||||
this.titleImg = titleImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleOpenCn() {
|
|
||||||
return bsMenuTitleOpenCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleOpenCn(String bsMenuTitleOpenCn) {
|
|
||||||
this.bsMenuTitleOpenCn = bsMenuTitleOpenCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleOpenEn() {
|
|
||||||
return bsMenuTitleOpenEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleOpenEn(String bsMenuTitleOpenEn) {
|
|
||||||
this.bsMenuTitleOpenEn = bsMenuTitleOpenEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleCloseCn() {
|
|
||||||
return bsMenuTitleCloseCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleCloseCn(String bsMenuTitleCloseCn) {
|
|
||||||
this.bsMenuTitleCloseCn = bsMenuTitleCloseCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleCloseEn() {
|
|
||||||
return bsMenuTitleCloseEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleCloseEn(String bsMenuTitleCloseEn) {
|
|
||||||
this.bsMenuTitleCloseEn = bsMenuTitleCloseEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsTopBarIcon() {
|
|
||||||
return bsTopBarIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsTopBarIcon(String bsTopBarIcon) {
|
|
||||||
this.bsTopBarIcon = bsTopBarIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcQrcodeImg() {
|
|
||||||
return pcQrcodeImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcQrcodeImg(String pcQrcodeImg) {
|
|
||||||
this.pcQrcodeImg = pcQrcodeImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameCn() {
|
|
||||||
return pcCompanyNameCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameCn(String pcCompanyNameCn) {
|
|
||||||
this.pcCompanyNameCn = pcCompanyNameCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameEn() {
|
|
||||||
return pcCompanyNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameEn(String pcCompanyNameEn) {
|
|
||||||
this.pcCompanyNameEn = pcCompanyNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameShortCn() {
|
|
||||||
return pcCompanyNameShortCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameShortCn(String pcCompanyNameShortCn) {
|
|
||||||
this.pcCompanyNameShortCn = pcCompanyNameShortCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameShortEn() {
|
|
||||||
return pcCompanyNameShortEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameShortEn(String pcCompanyNameShortEn) {
|
|
||||||
this.pcCompanyNameShortEn = pcCompanyNameShortEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcLogoImgText() {
|
|
||||||
return pcLogoImgText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcLogoImgText(String pcLogoImgText) {
|
|
||||||
this.pcLogoImgText = pcLogoImgText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcWelcomeCn() {
|
|
||||||
return pcWelcomeCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcWelcomeCn(String pcWelcomeCn) {
|
|
||||||
this.pcWelcomeCn = pcWelcomeCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcWelcomeEn() {
|
|
||||||
return pcWelcomeEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcWelcomeEn(String pcWelcomeEn) {
|
|
||||||
this.pcWelcomeEn = pcWelcomeEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyInfoCn() {
|
|
||||||
return pcCompanyInfoCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyInfoCn(String pcCompanyInfoCn) {
|
|
||||||
this.pcCompanyInfoCn = pcCompanyInfoCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyInfoEn() {
|
|
||||||
return pcCompanyInfoEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyInfoEn(String pcCompanyInfoEn) {
|
|
||||||
this.pcCompanyInfoEn = pcCompanyInfoEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "WebConfigDTO{" +
|
|
||||||
"id=" + id +
|
|
||||||
",configType=" + configType +
|
|
||||||
",isActivity=" + isActivity +
|
|
||||||
",loginLogoImg=" + loginLogoImg +
|
|
||||||
",loginBgImg=" + loginBgImg +
|
|
||||||
",copyrightCn=" + copyrightCn +
|
|
||||||
",copyrightEn=" + copyrightEn +
|
|
||||||
",titleContentCn=" + titleContentCn +
|
|
||||||
",titleContentEn=" + titleContentEn +
|
|
||||||
",titleImg=" + titleImg +
|
|
||||||
",bsMenuTitleOpenCn=" + bsMenuTitleOpenCn +
|
|
||||||
",bsMenuTitleOpenEn=" + bsMenuTitleOpenEn +
|
|
||||||
",bsMenuTitleCloseCn=" + bsMenuTitleCloseCn +
|
|
||||||
",bsMenuTitleCloseEn=" + bsMenuTitleCloseEn +
|
|
||||||
",bsTopBarIcon=" + bsTopBarIcon +
|
|
||||||
",pcQrcodeImg=" + pcQrcodeImg +
|
|
||||||
",pcCompanyNameCn=" + pcCompanyNameCn +
|
|
||||||
",pcCompanyNameEn=" + pcCompanyNameEn +
|
|
||||||
",pcCompanyNameShortCn=" + pcCompanyNameShortCn +
|
|
||||||
",pcCompanyNameShortEn=" + pcCompanyNameShortEn +
|
|
||||||
",pcLogoImgText=" + pcLogoImgText +
|
|
||||||
",pcWelcomeCn=" + pcWelcomeCn +
|
|
||||||
",pcWelcomeEn=" + pcWelcomeEn +
|
|
||||||
",pcCompanyInfoCn=" + pcCompanyInfoCn +
|
|
||||||
",pcCompanyInfoEn=" + pcCompanyInfoEn +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-15 17:46:26
|
* @date 2021-01-15 17:46:26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class OfflineHandleEvent extends BaseModel implements Serializable {
|
public class OfflineHandleEvent extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,81 +58,4 @@ public class OfflineHandleEvent extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String offlineReason;
|
private String offlineReason;
|
||||||
|
|
||||||
public Long getEventId() {
|
|
||||||
return eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEventId(Long eventId) {
|
|
||||||
this.eventId = eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHandleType() {
|
|
||||||
return handleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHandleType(Integer handleType) {
|
|
||||||
this.handleType = handleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getHandleId() {
|
|
||||||
return handleId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHandleId(Long handleId) {
|
|
||||||
this.handleId = handleId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSysType() {
|
|
||||||
return sysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysType(Integer sysType) {
|
|
||||||
this.sysType = sysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getHandlerId() {
|
|
||||||
return handlerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHandlerId(Long handlerId) {
|
|
||||||
this.handlerId = handlerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOfflineReason() {
|
|
||||||
return offlineReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOfflineReason(String offlineReason) {
|
|
||||||
this.offlineReason = offlineReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OfflineHandleEvent{" +
|
|
||||||
"eventId=" + eventId +
|
|
||||||
", handleType=" + handleType +
|
|
||||||
", handleId=" + handleId +
|
|
||||||
", sysType=" + sysType +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", handlerId=" + handlerId +
|
|
||||||
", status=" + status +
|
|
||||||
", offlineReason='" + offlineReason + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-01-15 17:46:26
|
* @date 2021-01-15 17:46:26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class OfflineHandleEventItem extends BaseModel implements Serializable {
|
public class OfflineHandleEventItem extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,64 +48,4 @@ public class OfflineHandleEventItem extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Date auditTime;
|
private Date auditTime;
|
||||||
|
|
||||||
public Long getEventItemId() {
|
|
||||||
return eventItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEventItemId(Long eventItemId) {
|
|
||||||
this.eventItemId = eventItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getEventId() {
|
|
||||||
return eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEventId(Long eventId) {
|
|
||||||
this.eventId = eventId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReapplyReason() {
|
|
||||||
return reapplyReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReapplyReason(String reapplyReason) {
|
|
||||||
this.reapplyReason = reapplyReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRefuseReason() {
|
|
||||||
return refuseReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefuseReason(String refuseReason) {
|
|
||||||
this.refuseReason = refuseReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getReapplyTime() {
|
|
||||||
return reapplyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReapplyTime(Date reapplyTime) {
|
|
||||||
this.reapplyTime = reapplyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getAuditTime() {
|
|
||||||
return auditTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuditTime(Date auditTime) {
|
|
||||||
this.auditTime = auditTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OfflineHandleEventItem{" +
|
|
||||||
"eventItemId=" + eventItemId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",eventId=" + eventId +
|
|
||||||
",reapplyReason=" + reapplyReason +
|
|
||||||
",refuseReason=" + refuseReason +
|
|
||||||
",reapplyTime=" + reapplyTime +
|
|
||||||
",auditTime=" + auditTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-03-21
|
* @date 2023-03-21
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class PublicBank extends BaseModel implements Serializable {
|
public class PublicBank extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -28,38 +30,4 @@ public class PublicBank extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String bankCode;
|
private String bankCode;
|
||||||
|
|
||||||
public Long getBankId() {
|
|
||||||
return bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankId(Long bankId) {
|
|
||||||
this.bankId = bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCode() {
|
|
||||||
return bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCode(String bankCode) {
|
|
||||||
this.bankCode = bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PublicBank{" +
|
|
||||||
"bankId=" + bankId +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", bankCode='" + bankCode + '\'' +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.platform.model;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.List;
|
|||||||
* 系统密钥
|
* 系统密钥
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysAccessKey extends BaseModel implements Serializable {
|
public class SysAccessKey extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.platform.model;
|
|||||||
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -10,7 +11,7 @@ import java.io.Serializable;
|
|||||||
* 密钥对应可用菜单
|
* 密钥对应可用菜单
|
||||||
* @author LGH
|
* @author LGH
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "密钥对应可用菜单")
|
@Schema(description = "密钥对应可用菜单")
|
||||||
public class SysAccessMenu implements Serializable {
|
public class SysAccessMenu implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,36 +22,4 @@ public class SysAccessMenu implements Serializable {
|
|||||||
@Schema(description = "菜单ID")
|
@Schema(description = "菜单ID")
|
||||||
private Long menuId;
|
private Long menuId;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSysAccessKeyId() {
|
|
||||||
return sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysAccessKeyId(Long sysAccessKeyId) {
|
|
||||||
this.sysAccessKeyId = sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getMenuId() {
|
|
||||||
return menuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMenuId(Long menuId) {
|
|
||||||
this.menuId = menuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysAccessMenu{" +
|
|
||||||
"id=" + id +
|
|
||||||
", sysAccessKeyId=" + sysAccessKeyId +
|
|
||||||
", menuId=" + menuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -11,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @description:
|
* @description:
|
||||||
* @since 2024/1/9 10:14
|
* @since 2024/1/9 10:14
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@Schema(description = "密钥对应可用菜单资源")
|
@Schema(description = "密钥对应可用菜单资源")
|
||||||
public class SysAccessMenuPermission implements Serializable {
|
public class SysAccessMenuPermission implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -22,36 +24,4 @@ public class SysAccessMenuPermission implements Serializable {
|
|||||||
@Schema(description = "菜单资源ID")
|
@Schema(description = "菜单资源ID")
|
||||||
private Long menuPermissionId;
|
private Long menuPermissionId;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSysAccessKeyId() {
|
|
||||||
return sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysAccessKeyId(Long sysAccessKeyId) {
|
|
||||||
this.sysAccessKeyId = sysAccessKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getMenuPermissionId() {
|
|
||||||
return menuPermissionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMenuPermissionId(Long menuPermissionId) {
|
|
||||||
this.menuPermissionId = menuPermissionId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysAccessMenuPermission{" +
|
|
||||||
"id=" + id +
|
|
||||||
", sysAccessKeyId=" + sysAccessKeyId +
|
|
||||||
", menuPermissionId=" + menuPermissionId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020-12-23 16:27:57
|
* @date 2020-12-23 16:27:57
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysConfig extends BaseModel implements Serializable {
|
public class SysConfig extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,45 +38,4 @@ public class SysConfig extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamKey() {
|
|
||||||
return paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamKey(String paramKey) {
|
|
||||||
this.paramKey = paramKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getParamValue() {
|
|
||||||
return paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParamValue(String paramValue) {
|
|
||||||
this.paramValue = paramValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysConfigVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
",paramKey=" + paramKey +
|
|
||||||
",paramValue=" + paramValue +
|
|
||||||
",remark=" + remark +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020-12-21 14:16:34
|
* @date 2020-12-21 14:16:34
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class SysUser extends BaseModel implements Serializable {
|
public class SysUser extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,65 +48,4 @@ public class SysUser extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer hasAccount;
|
private Integer hasAccount;
|
||||||
|
|
||||||
public Long getSysUserId() {
|
|
||||||
return sysUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSysUserId(Long sysUserId) {
|
|
||||||
this.sysUserId = sysUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAvatar() {
|
|
||||||
return avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAvatar(String avatar) {
|
|
||||||
this.avatar = avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCode() {
|
|
||||||
return code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCode(String code) {
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPhoneNum() {
|
|
||||||
return phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPhoneNum(String phoneNum) {
|
|
||||||
this.phoneNum = phoneNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasAccount() {
|
|
||||||
return hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasAccount(Integer hasAccount) {
|
|
||||||
this.hasAccount = hasAccount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SysUserVO{" +
|
|
||||||
"sysUserId=" + sysUserId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",nickName=" + nickName +
|
|
||||||
",avatar=" + avatar +
|
|
||||||
",code=" + code +
|
|
||||||
",phoneNum=" + phoneNum +
|
|
||||||
",hasAccount=" + hasAccount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.model;
|
package com.tmerclub.cloud.platform.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +13,7 @@ import java.io.Serializable;
|
|||||||
*
|
*
|
||||||
* @author Orange
|
* @author Orange
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class WebConfig extends BaseModel implements Serializable {
|
public class WebConfig extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -140,234 +142,4 @@ public class WebConfig extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String pcCompanyInfoEn;
|
private String pcCompanyInfoEn;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getConfigType() {
|
|
||||||
return configType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConfigType(Integer configType) {
|
|
||||||
this.configType = configType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsActivity() {
|
|
||||||
return isActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsActivity(Integer isActivity) {
|
|
||||||
this.isActivity = isActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLoginLogoImg() {
|
|
||||||
return loginLogoImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoginLogoImg(String loginLogoImg) {
|
|
||||||
this.loginLogoImg = loginLogoImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLoginBgImg() {
|
|
||||||
return loginBgImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoginBgImg(String loginBgImg) {
|
|
||||||
this.loginBgImg = loginBgImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCopyrightCn() {
|
|
||||||
return copyrightCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCopyrightCn(String copyrightCn) {
|
|
||||||
this.copyrightCn = copyrightCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCopyrightEn() {
|
|
||||||
return copyrightEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCopyrightEn(String copyrightEn) {
|
|
||||||
this.copyrightEn = copyrightEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleContentCn() {
|
|
||||||
return titleContentCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleContentCn(String titleContentCn) {
|
|
||||||
this.titleContentCn = titleContentCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleContentEn() {
|
|
||||||
return titleContentEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleContentEn(String titleContentEn) {
|
|
||||||
this.titleContentEn = titleContentEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTitleImg() {
|
|
||||||
return titleImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitleImg(String titleImg) {
|
|
||||||
this.titleImg = titleImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleOpenCn() {
|
|
||||||
return bsMenuTitleOpenCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleOpenCn(String bsMenuTitleOpenCn) {
|
|
||||||
this.bsMenuTitleOpenCn = bsMenuTitleOpenCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleOpenEn() {
|
|
||||||
return bsMenuTitleOpenEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleOpenEn(String bsMenuTitleOpenEn) {
|
|
||||||
this.bsMenuTitleOpenEn = bsMenuTitleOpenEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleCloseCn() {
|
|
||||||
return bsMenuTitleCloseCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleCloseCn(String bsMenuTitleCloseCn) {
|
|
||||||
this.bsMenuTitleCloseCn = bsMenuTitleCloseCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsMenuTitleCloseEn() {
|
|
||||||
return bsMenuTitleCloseEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsMenuTitleCloseEn(String bsMenuTitleCloseEn) {
|
|
||||||
this.bsMenuTitleCloseEn = bsMenuTitleCloseEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBsTopBarIcon() {
|
|
||||||
return bsTopBarIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBsTopBarIcon(String bsTopBarIcon) {
|
|
||||||
this.bsTopBarIcon = bsTopBarIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcQrcodeImg() {
|
|
||||||
return pcQrcodeImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcQrcodeImg(String pcQrcodeImg) {
|
|
||||||
this.pcQrcodeImg = pcQrcodeImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameCn() {
|
|
||||||
return pcCompanyNameCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameCn(String pcCompanyNameCn) {
|
|
||||||
this.pcCompanyNameCn = pcCompanyNameCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameEn() {
|
|
||||||
return pcCompanyNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameEn(String pcCompanyNameEn) {
|
|
||||||
this.pcCompanyNameEn = pcCompanyNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameShortCn() {
|
|
||||||
return pcCompanyNameShortCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameShortCn(String pcCompanyNameShortCn) {
|
|
||||||
this.pcCompanyNameShortCn = pcCompanyNameShortCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyNameShortEn() {
|
|
||||||
return pcCompanyNameShortEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyNameShortEn(String pcCompanyNameShortEn) {
|
|
||||||
this.pcCompanyNameShortEn = pcCompanyNameShortEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcLogoImgText() {
|
|
||||||
return pcLogoImgText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcLogoImgText(String pcLogoImgText) {
|
|
||||||
this.pcLogoImgText = pcLogoImgText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcWelcomeCn() {
|
|
||||||
return pcWelcomeCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcWelcomeCn(String pcWelcomeCn) {
|
|
||||||
this.pcWelcomeCn = pcWelcomeCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcWelcomeEn() {
|
|
||||||
return pcWelcomeEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcWelcomeEn(String pcWelcomeEn) {
|
|
||||||
this.pcWelcomeEn = pcWelcomeEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyInfoCn() {
|
|
||||||
return pcCompanyInfoCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyInfoCn(String pcCompanyInfoCn) {
|
|
||||||
this.pcCompanyInfoCn = pcCompanyInfoCn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPcCompanyInfoEn() {
|
|
||||||
return pcCompanyInfoEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPcCompanyInfoEn(String pcCompanyInfoEn) {
|
|
||||||
this.pcCompanyInfoEn = pcCompanyInfoEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "WebConfig{" +
|
|
||||||
"id=" + id +
|
|
||||||
",configType=" + configType +
|
|
||||||
",isActivity=" + isActivity +
|
|
||||||
",loginLogoImg=" + loginLogoImg +
|
|
||||||
",copyrightCn=" + copyrightCn +
|
|
||||||
",copyrightEn=" + copyrightEn +
|
|
||||||
",titleContentCn=" + titleContentCn +
|
|
||||||
",titleContentEn=" + titleContentEn +
|
|
||||||
",loginBgImg=" + loginBgImg +
|
|
||||||
",titleImg=" + titleImg +
|
|
||||||
",bsMenuTitleOpenCn=" + bsMenuTitleOpenCn +
|
|
||||||
",bsMenuTitleOpenEn=" + bsMenuTitleOpenEn +
|
|
||||||
",bsMenuTitleCloseCn=" + bsMenuTitleCloseCn +
|
|
||||||
",bsMenuTitleCloseEn=" + bsMenuTitleCloseEn +
|
|
||||||
",bsTopBarIcon=" + bsTopBarIcon +
|
|
||||||
",pcQrcodeImg=" + pcQrcodeImg +
|
|
||||||
",pcCompanyNameCn=" + pcCompanyNameCn +
|
|
||||||
",pcCompanyNameEn=" + pcCompanyNameEn +
|
|
||||||
",pcCompanyNameShortCn=" + pcCompanyNameShortCn +
|
|
||||||
",pcCompanyNameShortEn=" + pcCompanyNameShortEn +
|
|
||||||
",pcLogoImgText=" + pcLogoImgText +
|
|
||||||
",pcWelcomeCn=" + pcWelcomeCn +
|
|
||||||
",pcWelcomeEn=" + pcWelcomeEn +
|
|
||||||
",pcCompanyInfoCn=" + pcCompanyInfoCn +
|
|
||||||
",pcCompanyInfoEn=" + pcCompanyInfoEn +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.tmerclub.cloud.platform.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
import com.tmerclub.cloud.common.product.vo.search.SpuSearchVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +14,7 @@ import java.util.List;
|
|||||||
* @author cl
|
* @author cl
|
||||||
* @date 2021-08-06 14:19:49
|
* @date 2021-08-06 14:19:49
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class DistributionConfigVO implements Serializable {
|
public class DistributionConfigVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -69,153 +71,4 @@ public class DistributionConfigVO implements Serializable {
|
|||||||
@Schema(description = "提现次数")
|
@Schema(description = "提现次数")
|
||||||
private Integer number;
|
private Integer number;
|
||||||
|
|
||||||
public Integer getWithdrawal() {
|
|
||||||
return withdrawal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWithdrawal(Integer withdrawal) {
|
|
||||||
this.withdrawal = withdrawal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDistributionSwitch() {
|
|
||||||
return distributionSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionSwitch(Integer distributionSwitch) {
|
|
||||||
this.distributionSwitch = distributionSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAttribution() {
|
|
||||||
return attribution;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAttribution(Integer attribution) {
|
|
||||||
this.attribution = attribution;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAutoCheck() {
|
|
||||||
return autoCheck;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAutoCheck(Integer autoCheck) {
|
|
||||||
this.autoCheck = autoCheck;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getSpuIdList() {
|
|
||||||
return spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuIdList(List<Long> spuIdList) {
|
|
||||||
this.spuIdList = spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<SpuSearchVO> getSpuVOList() {
|
|
||||||
return spuVOList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuVOList(List<SpuSearchVO> spuVOList) {
|
|
||||||
this.spuVOList = spuVOList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getExpenseAmount() {
|
|
||||||
return expenseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpenseAmount(BigDecimal expenseAmount) {
|
|
||||||
this.expenseAmount = expenseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExpenseNumber() {
|
|
||||||
return expenseNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpenseNumber(Integer expenseNumber) {
|
|
||||||
this.expenseNumber = expenseNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getRealName() {
|
|
||||||
return realName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRealName(Boolean realName) {
|
|
||||||
this.realName = realName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getIdentityCardPic() {
|
|
||||||
return identityCardPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardPic(Boolean identityCardPic) {
|
|
||||||
this.identityCardPic = identityCardPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getIdentityCardNumber() {
|
|
||||||
return identityCardNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityCardNumber(Boolean identityCardNumber) {
|
|
||||||
this.identityCardNumber = identityCardNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFrequency() {
|
|
||||||
return frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFrequency(Integer frequency) {
|
|
||||||
this.frequency = frequency;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAmountMax() {
|
|
||||||
return amountMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountMax(BigDecimal amountMax) {
|
|
||||||
this.amountMax = amountMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BigDecimal getAmountMin() {
|
|
||||||
return amountMin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAmountMin(BigDecimal amountMin) {
|
|
||||||
this.amountMin = amountMin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPaymentExplain() {
|
|
||||||
return paymentExplain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaymentExplain(String paymentExplain) {
|
|
||||||
this.paymentExplain = paymentExplain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNumber() {
|
|
||||||
return number;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNumber(Integer number) {
|
|
||||||
this.number = number;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "DistributionConfigVO{" +
|
|
||||||
"distributionSwitch=" + distributionSwitch +
|
|
||||||
", attribution=" + attribution +
|
|
||||||
", autoCheck=" + autoCheck +
|
|
||||||
", spuIdList=" + spuIdList +
|
|
||||||
", spuVOList=" + spuVOList +
|
|
||||||
", expenseAmount=" + expenseAmount +
|
|
||||||
", expenseNumber=" + expenseNumber +
|
|
||||||
", realName=" + realName +
|
|
||||||
", identityCardPic=" + identityCardPic +
|
|
||||||
", identityCardNumber=" + identityCardNumber +
|
|
||||||
", frequency=" + frequency +
|
|
||||||
", amountMax=" + amountMax +
|
|
||||||
", amountMin=" + amountMin +
|
|
||||||
", paymentExplain='" + paymentExplain + '\'' +
|
|
||||||
", number=" + number +
|
|
||||||
", withdrawal=" + withdrawal +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
package com.tmerclub.cloud.platform.vo;
|
package com.tmerclub.cloud.platform.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @author cl
|
* @author cl
|
||||||
* @date 2021-08-06 14:20:02
|
* @date 2021-08-06 14:20:02
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class DistributionRecruitConfigVO implements Serializable {
|
public class DistributionRecruitConfigVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.platform.vo;
|
package com.tmerclub.cloud.platform.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* 成长配置信息
|
* 成长配置信息
|
||||||
* @author lhd
|
* @author lhd
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class GrowthConfigVO implements Serializable {
|
public class GrowthConfigVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -24,45 +27,4 @@ public class GrowthConfigVO implements Serializable {
|
|||||||
|
|
||||||
private Double recharge;
|
private Double recharge;
|
||||||
|
|
||||||
public Boolean getShopGrowthSwitch() {
|
|
||||||
return shopGrowthSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopGrowthSwitch(Boolean shopGrowthSwitch) {
|
|
||||||
this.shopGrowthSwitch = shopGrowthSwitch;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getBuyPrice() {
|
|
||||||
return buyPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBuyPrice(Double buyPrice) {
|
|
||||||
this.buyPrice = buyPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getBuyOrder() {
|
|
||||||
return buyOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBuyOrder(Double buyOrder) {
|
|
||||||
this.buyOrder = buyOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getRecharge() {
|
|
||||||
return recharge;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRecharge(Double recharge) {
|
|
||||||
this.recharge = recharge;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GrowthConfigVO{" +
|
|
||||||
"shopGrowthSwitch=" + shopGrowthSwitch +
|
|
||||||
", buyPrice=" + buyPrice +
|
|
||||||
", buyOrder=" + buyOrder +
|
|
||||||
", recharge=" + recharge +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.tmerclub.cloud.platform.vo;
|
package com.tmerclub.cloud.platform.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +10,7 @@ import java.io.Serializable;
|
|||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-03-21
|
* @date 2023-03-21
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class PublicBankVO implements Serializable {
|
public class PublicBankVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,36 +23,4 @@ public class PublicBankVO implements Serializable {
|
|||||||
@Schema(description = "银行代码")
|
@Schema(description = "银行代码")
|
||||||
private String bankCode;
|
private String bankCode;
|
||||||
|
|
||||||
public Long getBankId() {
|
|
||||||
return bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankId(Long bankId) {
|
|
||||||
this.bankId = bankId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankName() {
|
|
||||||
return bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankName(String bankName) {
|
|
||||||
this.bankName = bankName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBankCode() {
|
|
||||||
return bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBankCode(String bankCode) {
|
|
||||||
this.bankCode = bankCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PublicBankVO{" +
|
|
||||||
"bankId=" + bankId +
|
|
||||||
", bankName='" + bankName + '\'' +
|
|
||||||
", bankCode='" + bankCode + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.platform.vo;
|
package com.tmerclub.cloud.platform.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +11,7 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2020/12/30
|
* @date 2020/12/30
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ScoreCategoryConfigVO implements Serializable {
|
public class ScoreCategoryConfigVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -31,45 +34,4 @@ public class ScoreCategoryConfigVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Double getScoreLimit;
|
private Double getScoreLimit;
|
||||||
|
|
||||||
public Long getCategoryId() {
|
|
||||||
return categoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCategoryId(Long categoryId) {
|
|
||||||
this.categoryId = categoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCategoryName() {
|
|
||||||
return categoryName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCategoryName(String categoryName) {
|
|
||||||
this.categoryName = categoryName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getUseScoreLimit() {
|
|
||||||
return useScoreLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUseScoreLimit(Double useScoreLimit) {
|
|
||||||
this.useScoreLimit = useScoreLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getGetScoreLimit() {
|
|
||||||
return getScoreLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGetScoreLimit(Double getScoreLimit) {
|
|
||||||
this.getScoreLimit = getScoreLimit;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ScoreCategoryConfigVO{" +
|
|
||||||
"categoryId=" + categoryId +
|
|
||||||
", categoryName='" + categoryName + '\'' +
|
|
||||||
", useScoreLimit=" + useScoreLimit +
|
|
||||||
", getScoreLimit=" + getScoreLimit +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user