From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/entity/vipshop/VipShopOrderDetail.java | 430 ++++++++++++++++++++++++++-------------------------- 1 files changed, 215 insertions(+), 215 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/vipshop/VipShopOrderDetail.java b/fanli/src/main/java/com/yeshi/fanli/entity/vipshop/VipShopOrderDetail.java index 5968c77..906747f 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/vipshop/VipShopOrderDetail.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/vipshop/VipShopOrderDetail.java @@ -1,215 +1,215 @@ -package com.yeshi.fanli.entity.vipshop; - -import java.math.BigDecimal; -import java.util.Date; -import java.util.List; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -/** - * 鍞搧浼氳鍗曡鎯� - * @author Administrator - * - */ -@Table("yeshi_ec_vipshop_order_detail") -public class VipShopOrderDetail { - - public final static int STATUS_INVALID = 0;// 涓嶅悎鏍� - public final static int STATUS_UNKOWN = 1;// 寰呭畾 - public final static int STATUS_FINISH = 2;// 宸插畬缁� - - // 鏄庣粏 - @Column(name = "vod_id") - private Long id; - @Column(name = "vod_identify_code") - private String identifyCode;// 鍞竴鏍囪瘑 - @Column(name = "vod_goods_id") - private String goodsId;// 鍟嗗搧id - @Column(name = "vod_goods_name") - private String goodsName;// 鍟嗗搧鍚嶇О - @Column(name = "vod_goods_thumb") - private String goodsThumb;// 鍟嗗搧缂╃暐鍥� - @Column(name = "vod_goods_count") - private Integer goodsCount;// 鍟嗗搧鏁伴噺 - @Column(name = "vod_commission_total_cost") - private BigDecimal commissionTotalCost;// 鍟嗗搧璁′剑閲戦(鍏�,淇濈暀涓や綅灏忔暟) - @Column(name = "vod_commission_rate") - private BigDecimal commissionRate;// 鍟嗗搧浣i噾姣斾緥(%) - @Column(name = "vod_commission") - private BigDecimal commission;// 鍟嗗搧浣i噾閲戦(鍏�,淇濈暀涓や綅灏忔暟) - @Column(name = "vod_comm_code") - private String commCode;// 浣i噾缂栫爜锛氬搴斿晢鍝佷簩绾у垎绫� - @Column(name = "vod_comm_name") - private String commName;// 浣i噾鏂规鍚嶇О - @Column(name = "vod_order_source") - private String orderSource;// 璁㈠崟鏉ユ簮 - @Column(name = "vod_size_id") - private String sizeId;// 鍟嗗搧灏虹爜锛�2019.01.01涔嬪悗鍙敤 - @Column(name = "vod_status") - private Integer status;// 鍟嗗搧鐘舵�侊細0-涓嶅悎鏍硷紝1-寰呭畾锛�2-宸插畬缁� - @Column(name = "vod_order_sn") - private String orderSn;// 璁㈠崟鍙� - @Column(name = "vod_create_time") - private Date createTime;// 鍒涘缓鏃堕棿 - @Column(name = "vod_update_time") - private Date updateTime;// 鏇存柊鏃堕棿 - - private List<VipShopAfterSaleDetailInfo> afterSaleInfo;// 鍞悗淇℃伅 - - private VipShopOrder order;//璁㈠崟 - - - public VipShopOrder getOrder() { - return order; - } - - public void setOrder(VipShopOrder order) { - this.order = order; - } - - public List<VipShopAfterSaleDetailInfo> getAfterSaleInfo() { - return afterSaleInfo; - } - - public void setAfterSaleInfo(List<VipShopAfterSaleDetailInfo> afterSaleInfo) { - this.afterSaleInfo = afterSaleInfo; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getIdentifyCode() { - return identifyCode; - } - - public void setIdentifyCode(String identifyCode) { - this.identifyCode = identifyCode; - } - - public String getGoodsId() { - return goodsId; - } - - public void setGoodsId(String goodsId) { - this.goodsId = goodsId; - } - - public String getGoodsName() { - return goodsName; - } - - public void setGoodsName(String goodsName) { - this.goodsName = goodsName; - } - - public String getGoodsThumb() { - return goodsThumb; - } - - public void setGoodsThumb(String goodsThumb) { - this.goodsThumb = goodsThumb; - } - - public Integer getGoodsCount() { - return goodsCount; - } - - public void setGoodsCount(Integer goodsCount) { - this.goodsCount = goodsCount; - } - - public BigDecimal getCommissionTotalCost() { - return commissionTotalCost; - } - - public void setCommissionTotalCost(BigDecimal commissionTotalCost) { - this.commissionTotalCost = commissionTotalCost; - } - - public BigDecimal getCommissionRate() { - return commissionRate; - } - - public void setCommissionRate(BigDecimal commissionRate) { - this.commissionRate = commissionRate; - } - - public BigDecimal getCommission() { - return commission; - } - - public void setCommission(BigDecimal commission) { - this.commission = commission; - } - - public String getCommCode() { - return commCode; - } - - public void setCommCode(String commCode) { - this.commCode = commCode; - } - - public String getCommName() { - return commName; - } - - public void setCommName(String commName) { - this.commName = commName; - } - - public String getOrderSource() { - return orderSource; - } - - public void setOrderSource(String orderSource) { - this.orderSource = orderSource; - } - - public String getSizeId() { - return sizeId; - } - - public void setSizeId(String sizeId) { - this.sizeId = sizeId; - } - - public Integer getStatus() { - return status; - } - - public void setStatus(Integer status) { - this.status = status; - } - - public String getOrderSn() { - return orderSn; - } - - public void setOrderSn(String orderSn) { - this.orderSn = orderSn; - } - - 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; - } - -} +package com.yeshi.fanli.entity.vipshop; + +import java.math.BigDecimal; +import java.util.Date; +import java.util.List; + +import org.yeshi.utils.generater.mybatis.Column; +import org.yeshi.utils.generater.mybatis.Table; + +/** + * 鍞搧浼氳鍗曡鎯� + * @author Administrator + * + */ +@Table("yeshi_ec_vipshop_order_detail") +public class VipShopOrderDetail { + + public final static int STATUS_INVALID = 0;// 涓嶅悎鏍� + public final static int STATUS_UNKOWN = 1;// 寰呭畾 + public final static int STATUS_FINISH = 2;// 宸插畬缁� + + // 鏄庣粏 + @Column(name = "vod_id") + private Long id; + @Column(name = "vod_identify_code") + private String identifyCode;// 鍞竴鏍囪瘑 + @Column(name = "vod_goods_id") + private String goodsId;// 鍟嗗搧id + @Column(name = "vod_goods_name") + private String goodsName;// 鍟嗗搧鍚嶇О + @Column(name = "vod_goods_thumb") + private String goodsThumb;// 鍟嗗搧缂╃暐鍥� + @Column(name = "vod_goods_count") + private Integer goodsCount;// 鍟嗗搧鏁伴噺 + @Column(name = "vod_commission_total_cost") + private BigDecimal commissionTotalCost;// 鍟嗗搧璁′剑閲戦(鍏�,淇濈暀涓や綅灏忔暟) + @Column(name = "vod_commission_rate") + private BigDecimal commissionRate;// 鍟嗗搧浣i噾姣斾緥(%) + @Column(name = "vod_commission") + private BigDecimal commission;// 鍟嗗搧浣i噾閲戦(鍏�,淇濈暀涓や綅灏忔暟) + @Column(name = "vod_comm_code") + private String commCode;// 浣i噾缂栫爜锛氬搴斿晢鍝佷簩绾у垎绫� + @Column(name = "vod_comm_name") + private String commName;// 浣i噾鏂规鍚嶇О + @Column(name = "vod_order_source") + private String orderSource;// 璁㈠崟鏉ユ簮 + @Column(name = "vod_size_id") + private String sizeId;// 鍟嗗搧灏虹爜锛�2019.01.01涔嬪悗鍙敤 + @Column(name = "vod_status") + private Integer status;// 鍟嗗搧鐘舵�侊細0-涓嶅悎鏍硷紝1-寰呭畾锛�2-宸插畬缁� + @Column(name = "vod_order_sn") + private String orderSn;// 璁㈠崟鍙� + @Column(name = "vod_create_time") + private Date createTime;// 鍒涘缓鏃堕棿 + @Column(name = "vod_update_time") + private Date updateTime;// 鏇存柊鏃堕棿 + + private List<VipShopAfterSaleDetailInfo> afterSaleInfo;// 鍞悗淇℃伅 + + private VipShopOrder order;//璁㈠崟 + + + public VipShopOrder getOrder() { + return order; + } + + public void setOrder(VipShopOrder order) { + this.order = order; + } + + public List<VipShopAfterSaleDetailInfo> getAfterSaleInfo() { + return afterSaleInfo; + } + + public void setAfterSaleInfo(List<VipShopAfterSaleDetailInfo> afterSaleInfo) { + this.afterSaleInfo = afterSaleInfo; + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getIdentifyCode() { + return identifyCode; + } + + public void setIdentifyCode(String identifyCode) { + this.identifyCode = identifyCode; + } + + public String getGoodsId() { + return goodsId; + } + + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + public String getGoodsName() { + return goodsName; + } + + public void setGoodsName(String goodsName) { + this.goodsName = goodsName; + } + + public String getGoodsThumb() { + return goodsThumb; + } + + public void setGoodsThumb(String goodsThumb) { + this.goodsThumb = goodsThumb; + } + + public Integer getGoodsCount() { + return goodsCount; + } + + public void setGoodsCount(Integer goodsCount) { + this.goodsCount = goodsCount; + } + + public BigDecimal getCommissionTotalCost() { + return commissionTotalCost; + } + + public void setCommissionTotalCost(BigDecimal commissionTotalCost) { + this.commissionTotalCost = commissionTotalCost; + } + + public BigDecimal getCommissionRate() { + return commissionRate; + } + + public void setCommissionRate(BigDecimal commissionRate) { + this.commissionRate = commissionRate; + } + + public BigDecimal getCommission() { + return commission; + } + + public void setCommission(BigDecimal commission) { + this.commission = commission; + } + + public String getCommCode() { + return commCode; + } + + public void setCommCode(String commCode) { + this.commCode = commCode; + } + + public String getCommName() { + return commName; + } + + public void setCommName(String commName) { + this.commName = commName; + } + + public String getOrderSource() { + return orderSource; + } + + public void setOrderSource(String orderSource) { + this.orderSource = orderSource; + } + + public String getSizeId() { + return sizeId; + } + + public void setSizeId(String sizeId) { + this.sizeId = sizeId; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getOrderSn() { + return orderSn; + } + + public void setOrderSn(String orderSn) { + this.orderSn = orderSn; + } + + 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; + } + +} -- Gitblit v1.8.0