From 75c32d6d697a550400d0b4eec95b8570d83b726f Mon Sep 17 00:00:00 2001 From: kimi <kimi42345@gmail.com> Date: 星期五, 27 十一月 2020 19:20:32 +0800 Subject: [PATCH] 提交 --- src/main/java/com/highdatas/srs/entity/Scheme.java | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 102 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/highdatas/srs/entity/Scheme.java b/src/main/java/com/highdatas/srs/entity/Scheme.java index 75aabcf..f7e7bf4 100644 --- a/src/main/java/com/highdatas/srs/entity/Scheme.java +++ b/src/main/java/com/highdatas/srs/entity/Scheme.java @@ -5,7 +5,9 @@ import com.baomidou.mybatisplus.annotations.TableName; import java.io.Serializable; +import java.math.BigDecimal; import java.util.Date; +import java.util.List; /** * <p> @@ -23,17 +25,28 @@ private String id; private String name; + private String code; + private String type; + @TableField("lead_user_id") + private String leadUserId; @TableField("reseach_type") private String reseachType; + @TableField("order_type") + private String orderType; - private String desp; + private String desc; + private BigDecimal budget; + @TableField("pay_money") + private BigDecimal payMoney; @TableField("start_time") private Date startTime; @TableField("user_id") private String userId; + @TableField("charge_id") + private String chargeId; @TableField("end_time") private Date endTime; @@ -42,7 +55,90 @@ private Date createTime; private String status; + private String attachment; + private transient List<List<String>> leadUserList; + + + public BigDecimal getPayMoney() { + return payMoney; + } + + public Scheme setPayMoney(BigDecimal payMoney) { + this.payMoney = payMoney; + return this; + } + + public String getType() { + return type; + } + + public Scheme setType(String type) { + this.type = type; + return this; + } + + public String getOrderType() { + return orderType; + } + + public Scheme setOrderType(String orderType) { + this.orderType = orderType; + return this; + } + + public String getChargeId() { + return chargeId; + } + + public String getCode() { + return code; + } + + public Scheme setCode(String code) { + this.code = code; + return this; + } + + public Scheme setChargeId(String chargeId) { + this.chargeId = chargeId; + return this; + } + + public BigDecimal getBudget() { + return budget; + } + + public Scheme setBudget(BigDecimal budget) { + this.budget = budget; + return this; + } + + public String getAttachment() { + return attachment; + } + + public void setAttachment(String attachment) { + this.attachment = attachment; + } + + + public List<List<String>> getLeadUserList() { + return leadUserList; + } + + public void setLeadUserList(List<List<String>> leadUserList) { + this.leadUserList = leadUserList; + } + + public String getLeadUserId() { + return leadUserId; + } + + public Scheme setLeadUserId(String leadUserId) { + this.leadUserId = leadUserId; + return this; + } public String getStatus() { return status; @@ -87,12 +183,12 @@ this.reseachType = reseachType; return this; } - public String getDesp() { - return desp; + public String getDesc() { + return desc; } - public Scheme setDesp(String desp) { - this.desp = desp; + public Scheme setDesc(String desp) { + this.desc = desp; return this; } public Date getStartTime() { @@ -131,7 +227,7 @@ "id=" + id + ", name=" + name + ", reseachType=" + reseachType + - ", desp=" + desp + + ", desp=" + desc + ", startTime=" + startTime + ", endTime=" + endTime + ", createTime=" + createTime + -- Gitblit v1.8.0