| | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | 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; |
| | |
| | | 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; |
| | |
| | | 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() { |
| | |
| | | "id=" + id + |
| | | ", name=" + name + |
| | | ", reseachType=" + reseachType + |
| | | ", desp=" + desp + |
| | | ", desp=" + desc + |
| | | ", startTime=" + startTime + |
| | | ", endTime=" + endTime + |
| | | ", createTime=" + createTime + |