admin
2022-08-25 c9db68e33f90231b064b8864fc69ccf7d25f5e0b
facade-lijin/src/main/java/com/ks/lijin/pojo/DTO/LiJinCreateParam.java
@@ -5,39 +5,43 @@
public class LiJinCreateParam {
    // 用户id
    private String uid;
    // 商品id
    private Long goodsId;
    String appkey;
    String appsecret;
    private String pid;
    // 礼金标题
    private String title;
    // 礼金数量
    private int num;
    // 单个金额
    private BigDecimal money;
    // 数量
    private Integer num;
    private Date sendStartTime;
    private Date sendEndTime;
    private Date useStartTime;
    private Date useEndTime;
    private String pid;
    public String getUid() {
        return uid;
    }
    public void setUid(String uid) {
        this.uid = uid;
    }
    public int getNum() {
    public Integer getNum() {
        return num;
    }
    public void setNum(int num) {
    public void setNum(Integer num) {
        this.num = num;
    }
    public String getAppkey() {
        return appkey;
    }
    public void setAppkey(String appkey) {
        this.appkey = appkey;
    }
    public String getAppsecret() {
        return appsecret;
    }
    public void setAppsecret(String appsecret) {
        this.appsecret = appsecret;
    }
    public Date getSendStartTime() {
@@ -80,14 +84,6 @@
        this.pid = pid;
    }
    public Long getGoodsId() {
        return goodsId;
    }
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
    public String getTitle() {
        return title;
    }
@@ -96,11 +92,4 @@
        this.title = title;
    }
    public BigDecimal getMoney() {
        return money;
    }
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
}