admin
2021-05-29 970e58a0ceb0bfcd52affad3f08c53d30c29ab8d
facade-lijin/src/main/java/com/ks/lijin/pojo/DTO/LiJinCreateParam.java
@@ -7,25 +7,26 @@
    String appkey;
    String appsecret;
    private String pid;
    // 用户id
    private String uid;
    // 商品id
    private Long goodsId;
    // 礼金标题
    private String title;
    // 礼金数量
    private int num;
    // 单个金额
    private BigDecimal money;
    // 数量
    private Integer num;
    private Date sendStartTime;
    private Date sendEndTime;
    private Date useStartTime;
    private Date useEndTime;
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public String getAppkey() {
        return appkey;
@@ -41,22 +42,6 @@
    public void setAppsecret(String appsecret) {
        this.appsecret = appsecret;
    }
    public String getUid() {
        return uid;
    }
    public void setUid(String uid) {
        this.uid = uid;
    }
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public Date getSendStartTime() {
@@ -99,14 +84,6 @@
        this.pid = pid;
    }
    public Long getGoodsId() {
        return goodsId;
    }
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
    public String getTitle() {
        return title;
    }
@@ -115,11 +92,4 @@
        this.title = title;
    }
    public BigDecimal getMoney() {
        return money;
    }
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
}