| | |
| | | package com.highdatas.srs.entity; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | 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> |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private String id; |
| | | private String remark; |
| | | private String language; |
| | | @TableField("parttime_user") |
| | | private String parttimeUser; |
| | | @TableField(exist = false) |
| | | private String typeStr; |
| | | |
| | |
| | | private String detailInfoId; |
| | | |
| | | private BigDecimal budget; |
| | | private BigDecimal payment; |
| | | |
| | | @TableField("service_payment") |
| | | private BigDecimal servicePayment; |
| | | @TableField("real_payment") |
| | | private BigDecimal realPayment; |
| | | |
| | | |
| | | private String attachment; |
| | | @TableField("title_type") |
| | | private String titleType; |
| | | |
| | | @TableField("title_input") |
| | | private String titleInput; |
| | | |
| | | @TableField("must_attach") |
| | | private Boolean mustAttach; |
| | |
| | | private Boolean finish; |
| | | private Boolean edit; |
| | | private Boolean delay; |
| | | private Boolean parttime; |
| | | |
| | | @TableField("create_time") |
| | | private Date createTime; |
| | |
| | | @TableField("finish_time") |
| | | private Date finishTime; |
| | | |
| | | private transient JSONObject existsObject; |
| | | private transient List<SchemeDetailParttime> parttimeList; |
| | | private transient String schemeName; |
| | | |
| | | public String getSchemeName() { |
| | | return schemeName; |
| | | } |
| | | |
| | | public void setSchemeName(String schemeName) { |
| | | this.schemeName = schemeName; |
| | | } |
| | | |
| | | public JSONObject getExistsObject() { |
| | | return existsObject; |
| | | } |
| | | |
| | | public SchemeDetail setExistsObject(JSONObject existsObject) { |
| | | this.existsObject = existsObject; |
| | | return this; |
| | | } |
| | | |
| | | public List<SchemeDetailParttime> getParttimeList() { |
| | | return parttimeList; |
| | | } |
| | | |
| | | public void setParttimeList(List<SchemeDetailParttime> parttimeList) { |
| | | this.parttimeList = parttimeList; |
| | | } |
| | | |
| | | public String getTitleType() { |
| | | return titleType; |
| | | } |
| | | |
| | | public SchemeDetail setTitleType(String titleType) { |
| | | this.titleType = titleType; |
| | | return this; |
| | | } |
| | | |
| | | public String getTitleInput() { |
| | | return titleInput; |
| | | } |
| | | |
| | | public SchemeDetail setTitleInput(String titleInput) { |
| | | this.titleInput = titleInput; |
| | | return this; |
| | | } |
| | | |
| | | public BigDecimal getServicePayment() { |
| | | return servicePayment; |
| | | } |
| | | |
| | | public SchemeDetail setServicePayment(BigDecimal servicePayment) { |
| | | this.servicePayment = servicePayment; |
| | | return this; |
| | | } |
| | | |
| | | public BigDecimal getRealPayment() { |
| | | return realPayment; |
| | | } |
| | | |
| | | public SchemeDetail setRealPayment(BigDecimal realPayment) { |
| | | this.realPayment = realPayment; |
| | | return this; |
| | | } |
| | | |
| | | public BigDecimal getPayment() { |
| | | return payment; |
| | | } |
| | | |
| | | public SchemeDetail setPayment(BigDecimal payment) { |
| | | this.payment = payment; |
| | | return this; |
| | | |
| | | } |
| | | |
| | | public String getLanguage() { |
| | | return language; |
| | | } |
| | | |
| | | public SchemeDetail setLanguage(String language) { |
| | | this.language = language; |
| | | return this; |
| | | } |
| | | |
| | | public String getParttimeUser() { |
| | | return parttimeUser; |
| | | } |
| | | |
| | | public SchemeDetail setParttimeUser(String parttimeUser) { |
| | | this.parttimeUser = parttimeUser; |
| | | return this; |
| | | } |
| | | |
| | | public Boolean getParttime() { |
| | | return parttime; |
| | | } |
| | | |
| | | public SchemeDetail setParttime(Boolean parttime) { |
| | | this.parttime = parttime; |
| | | return this; |
| | | } |
| | | |
| | | public Date getFinishTime() { |
| | | return finishTime; |
| | | } |
| | |
| | | return this; |
| | | } |
| | | |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | } |
| | | |
| | | public Boolean getEdit() { |
| | | return edit; |
| | | } |