package com.highdatas.srs.entity;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-01-15
|
*/
|
@TableName("scheme")
|
public class Scheme extends Model<Scheme> {
|
|
private static final long serialVersionUID = 1L;
|
|
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 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;
|
|
@TableField("create_time")
|
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;
|
}
|
|
public Scheme setStatus(String status) {
|
this.status = status;
|
return this;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public Scheme setId(String id) {
|
this.id = id;
|
return this;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public Scheme setUserId(String userId) {
|
this.userId = userId;
|
return this;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public Scheme setName(String name) {
|
this.name = name;
|
return this;
|
}
|
public String getReseachType() {
|
return reseachType;
|
}
|
|
public Scheme setReseachType(String reseachType) {
|
this.reseachType = reseachType;
|
return this;
|
}
|
public String getDesc() {
|
return desc;
|
}
|
|
public Scheme setDesc(String desp) {
|
this.desc = desp;
|
return this;
|
}
|
public Date getStartTime() {
|
return startTime;
|
}
|
|
public Scheme setStartTime(Date startTime) {
|
this.startTime = startTime;
|
return this;
|
}
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public Scheme setEndTime(Date endTime) {
|
this.endTime = endTime;
|
return this;
|
}
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public Scheme setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "Scheme{" +
|
"id=" + id +
|
", name=" + name +
|
", reseachType=" + reseachType +
|
", desp=" + desc +
|
", startTime=" + startTime +
|
", endTime=" + endTime +
|
", createTime=" + createTime +
|
"}";
|
}
|
}
|