From 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 26 四月 2024 18:02:17 +0800 Subject: [PATCH] 唯品会链接解析升级 --- fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherCouponContentDTO.java | 159 ++++++++++++++++++++++++++++++++++------------------ 1 files changed, 103 insertions(+), 56 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherCouponContentDTO.java b/fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherCouponContentDTO.java index 4a2fc86..83d7bf1 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherCouponContentDTO.java +++ b/fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherCouponContentDTO.java @@ -1,56 +1,103 @@ -package com.yeshi.fanli.dto.msg; - -/** - * 鍏朵粬娑堟伅閲岄潰鐨勫埜鐩稿叧鐨勫唴瀹� - * - * @author Administrator - * - */ -public class MsgOtherCouponContentDTO { - private String state; - private String source;// 鏉ユ簮 - private String startTime; - private String endTime; - private Integer leftDay; - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public String getSource() { - return source; - } - - public void setSource(String source) { - this.source = source; - } - - public String getStartTime() { - return startTime; - } - - public void setStartTime(String startTime) { - this.startTime = startTime; - } - - public String getEndTime() { - return endTime; - } - - public void setEndTime(String endTime) { - this.endTime = endTime; - } - - public Integer getLeftDay() { - return leftDay; - } - - public void setLeftDay(Integer leftDay) { - this.leftDay = leftDay; - } - -} +package com.yeshi.fanli.dto.msg; + +import java.math.BigDecimal; + +/** + * 鍏朵粬娑堟伅閲岄潰鐨勫埜鐩稿叧鐨勫唴瀹� + * + * @author Administrator + * + */ +public class MsgOtherCouponContentDTO { + private String state; + private String source;// 鏉ユ簮 + private String orderId;// 璁㈠崟鍙� + private String desc;// 璇存槑 + private BigDecimal fanLiMoney;// 棰勪及杩斿埄 + private BigDecimal orderFanLiMoney;// 璁㈠崟杩斿埄 + private BigDecimal rewardMoney;// 濂栧姳閲� + private String startTime; + private String endTime; + private Integer leftDay; + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state; + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source; + } + + public String getStartTime() { + return startTime; + } + + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + public String getEndTime() { + return endTime; + } + + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + public Integer getLeftDay() { + return leftDay; + } + + public void setLeftDay(Integer leftDay) { + this.leftDay = leftDay; + } + + public String getOrderId() { + return orderId; + } + + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public BigDecimal getFanLiMoney() { + return fanLiMoney; + } + + public void setFanLiMoney(BigDecimal fanLiMoney) { + this.fanLiMoney = fanLiMoney; + } + + public BigDecimal getOrderFanLiMoney() { + return orderFanLiMoney; + } + + public void setOrderFanLiMoney(BigDecimal orderFanLiMoney) { + this.orderFanLiMoney = orderFanLiMoney; + } + + public BigDecimal getRewardMoney() { + return rewardMoney; + } + + public void setRewardMoney(BigDecimal rewardMoney) { + this.rewardMoney = rewardMoney; + } + +} -- Gitblit v1.8.0