| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- package com.ruixuan.isc.entity;
- import com.ruixuan.common.annotation.Excel;
- import com.ruixuan.common.core.domain.BaseEntity;
- import org.springframework.data.annotation.Transient;
- /**
- * 【请填写功能名称】对象 kuaishou_item_collect_samples
- *
- * @author ruoyi
- * @date 2023-02-08
- */
- public class KuaishouItemCollectSamples extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * $column.columnComment
- */
- private Long id;
- /**
- * 商品ID
- */
- @Excel(name = "商品ID")
- private Long itemId;
- /**
- * 商品标题
- */
- @Excel(name = "商品标题")
- private String itemTitle;
- /**
- * 商品单价-分
- */
- @Excel(name = "商品单价-分")
- private Long itemPrice;
- /**
- * 商品图片链接
- */
- @Excel(name = "商品图片链接")
- private String itemImgUrl;
- /**
- * 商品备注
- */
- @Excel(name = "商品备注")
- private String itemDesc;
- /**
- * 佣金比例
- */
- @Excel(name = "佣金比例")
- private Long commissionRate;
- /**
- * 服务费
- */
- @Excel(name = "服务费")
- private Long regimentalPromotion;
- /**
- * 领样数量
- */
- @Excel(name = "领样数量")
- private Integer sampleCount;
- /**
- * 领样规则
- */
- @Excel(name = "领样规则")
- private String sampleRequirement;
- /**
- * 商品创建人ID
- */
- @Excel(name = "商品创建人ID")
- private Long itemCreateId;
- /**
- * 商品创建人姓名
- */
- @Excel(name = "商品创建人姓名")
- private String itemCreateName;
- /**
- * 领样人ID
- */
- @Excel(name = "领样人ID")
- private Long collectSampleId;
- /**
- * 领样人姓名
- */
- @Excel(name = "领样人姓名")
- private String collectSampleName;
- /**
- * 手卡信息
- */
- @Excel(name = "手卡信息")
- private String partnerRecommendText;
- /**
- * 达人id
- */
- @Excel(name = "达人id")
- private Long promoterId;
- /**
- * 达人昵称
- */
- @Excel(name = "达人昵称")
- private String promoterNickName;
- /**
- * 达人手机号
- */
- @Excel(name = "达人手机号")
- private String promoterPhone;
- /**
- * 达人收获地址
- */
- @Excel(name = "达人收获地址")
- private String promoterAddress;
- private String promoterUrl;
- private String consignee;
- /**
- * 快递单号
- */
- @Excel(name = "快递单号")
- private String courierNumber;
- /**
- * 作业地址
- */
- @Excel(name = "作业地址")
- private String taskFileUrl;
- /**
- * 1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过
- */
- @Excel(name = "1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过")
- private Integer collectSampleStatus;
- /**
- * 状态备注
- */
- @Excel(name = "状态备注")
- private String collectSampleDesc;
- @Transient
- private String companyCode;
- @Transient
- private Long userId;
- @Transient
- private String userName;
- @Transient
- private Long validAmount;
- @Transient
- private Long validOrderNum;
- @Transient
- private Long promoterOrderNum;
- private Integer sampleVoucherStatus;
- private String sampleVoucher;
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getItemId() {
- return itemId;
- }
- public void setItemId(Long itemId) {
- this.itemId = itemId;
- }
- public String getItemTitle() {
- return itemTitle;
- }
- public void setItemTitle(String itemTitle) {
- this.itemTitle = itemTitle;
- }
- public Long getItemPrice() {
- return itemPrice;
- }
- public void setItemPrice(Long itemPrice) {
- this.itemPrice = itemPrice;
- }
- public String getItemImgUrl() {
- return itemImgUrl;
- }
- public void setItemImgUrl(String itemImgUrl) {
- this.itemImgUrl = itemImgUrl;
- }
- public String getItemDesc() {
- return itemDesc;
- }
- public void setItemDesc(String itemDesc) {
- this.itemDesc = itemDesc;
- }
- public Long getCommissionRate() {
- return commissionRate;
- }
- public void setCommissionRate(Long commissionRate) {
- this.commissionRate = commissionRate;
- }
- public Long getRegimentalPromotion() {
- return regimentalPromotion;
- }
- public void setRegimentalPromotion(Long regimentalPromotion) {
- this.regimentalPromotion = regimentalPromotion;
- }
- public Integer getSampleCount() {
- return sampleCount;
- }
- public void setSampleCount(Integer sampleCount) {
- this.sampleCount = sampleCount;
- }
- public String getSampleRequirement() {
- return sampleRequirement;
- }
- public void setSampleRequirement(String sampleRequirement) {
- this.sampleRequirement = sampleRequirement;
- }
- public Long getItemCreateId() {
- return itemCreateId;
- }
- public void setItemCreateId(Long itemCreateId) {
- this.itemCreateId = itemCreateId;
- }
- public String getItemCreateName() {
- return itemCreateName;
- }
- public void setItemCreateName(String itemCreateName) {
- this.itemCreateName = itemCreateName;
- }
- public Long getCollectSampleId() {
- return collectSampleId;
- }
- public void setCollectSampleId(Long collectSampleId) {
- this.collectSampleId = collectSampleId;
- }
- public String getCollectSampleName() {
- return collectSampleName;
- }
- public void setCollectSampleName(String collectSampleName) {
- this.collectSampleName = collectSampleName;
- }
- public String getPartnerRecommendText() {
- return partnerRecommendText;
- }
- public void setPartnerRecommendText(String partnerRecommendText) {
- this.partnerRecommendText = partnerRecommendText;
- }
- public Long getPromoterId() {
- return promoterId;
- }
- public void setPromoterId(Long promoterId) {
- this.promoterId = promoterId;
- }
- public String getPromoterNickName() {
- return promoterNickName;
- }
- public void setPromoterNickName(String promoterNickName) {
- this.promoterNickName = promoterNickName;
- }
- public String getPromoterPhone() {
- return promoterPhone;
- }
- public void setPromoterPhone(String promoterPhone) {
- this.promoterPhone = promoterPhone;
- }
- public String getPromoterAddress() {
- return promoterAddress;
- }
- public void setPromoterAddress(String promoterAddress) {
- this.promoterAddress = promoterAddress;
- }
- public String getPromoterUrl() {
- return promoterUrl;
- }
- public void setPromoterUrl(String promoterUrl) {
- this.promoterUrl = promoterUrl;
- }
- public String getConsignee() {
- return consignee;
- }
- public void setConsignee(String consignee) {
- this.consignee = consignee;
- }
- public String getCourierNumber() {
- return courierNumber;
- }
- public void setCourierNumber(String courierNumber) {
- this.courierNumber = courierNumber;
- }
- public String getTaskFileUrl() {
- return taskFileUrl;
- }
- public void setTaskFileUrl(String taskFileUrl) {
- this.taskFileUrl = taskFileUrl;
- }
- public Integer getCollectSampleStatus() {
- return collectSampleStatus;
- }
- public void setCollectSampleStatus(Integer collectSampleStatus) {
- this.collectSampleStatus = collectSampleStatus;
- }
- public String getCollectSampleDesc() {
- return collectSampleDesc;
- }
- public void setCollectSampleDesc(String collectSampleDesc) {
- this.collectSampleDesc = collectSampleDesc;
- }
- public String getCompanyCode() {
- return companyCode;
- }
- public void setCompanyCode(String companyCode) {
- this.companyCode = companyCode;
- }
- 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 Long getValidAmount() {
- return validAmount;
- }
- public void setValidAmount(Long validAmount) {
- this.validAmount = validAmount;
- }
- public Long getValidOrderNum() {
- return validOrderNum;
- }
- public void setValidOrderNum(Long validOrderNum) {
- this.validOrderNum = validOrderNum;
- }
- public Long getPromoterOrderNum() {
- return promoterOrderNum;
- }
- public void setPromoterOrderNum(Long promoterOrderNum) {
- this.promoterOrderNum = promoterOrderNum;
- }
- public Integer getSampleVoucherStatus() {
- return sampleVoucherStatus;
- }
- public void setSampleVoucherStatus(Integer sampleVoucherStatus) {
- this.sampleVoucherStatus = sampleVoucherStatus;
- }
- public String getSampleVoucher() {
- return sampleVoucher;
- }
- public void setSampleVoucher(String sampleVoucher) {
- this.sampleVoucher = sampleVoucher;
- }
- @Override
- public String toString() {
- return "KuaishouItemCollectSamples{" +
- "id=" + id +
- ", itemId=" + itemId +
- ", itemTitle='" + itemTitle + '\'' +
- ", itemPrice=" + itemPrice +
- ", itemImgUrl='" + itemImgUrl + '\'' +
- ", itemDesc='" + itemDesc + '\'' +
- ", commissionRate=" + commissionRate +
- ", regimentalPromotion=" + regimentalPromotion +
- ", sampleCount=" + sampleCount +
- ", sampleRequirement='" + sampleRequirement + '\'' +
- ", itemCreateId=" + itemCreateId +
- ", itemCreateName='" + itemCreateName + '\'' +
- ", collectSampleId=" + collectSampleId +
- ", collectSampleName='" + collectSampleName + '\'' +
- ", partnerRecommendText='" + partnerRecommendText + '\'' +
- ", promoterId=" + promoterId +
- ", promoterNickName='" + promoterNickName + '\'' +
- ", promoterPhone='" + promoterPhone + '\'' +
- ", promoterAddress='" + promoterAddress + '\'' +
- ", promoterUrl='" + promoterUrl + '\'' +
- ", consignee='" + consignee + '\'' +
- ", courierNumber='" + courierNumber + '\'' +
- ", taskFileUrl='" + taskFileUrl + '\'' +
- ", collectSampleStatus=" + collectSampleStatus +
- ", collectSampleDesc='" + collectSampleDesc + '\'' +
- ", companyCode='" + companyCode + '\'' +
- ", userId=" + userId +
- ", userName='" + userName + '\'' +
- ", validAmount=" + validAmount +
- ", validOrderNum=" + validOrderNum +
- ", promoterOrderNum=" + promoterOrderNum +
- ", sampleVoucherStatus=" + sampleVoucherStatus +
- ", sampleVoucher='" + sampleVoucher + '\'' +
- '}';
- }
- }
|