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/SchemeDetail.java | 129 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 129 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/highdatas/srs/entity/SchemeDetail.java b/src/main/java/com/highdatas/srs/entity/SchemeDetail.java index 91545d1..8993f49 100644 --- a/src/main/java/com/highdatas/srs/entity/SchemeDetail.java +++ b/src/main/java/com/highdatas/srs/entity/SchemeDetail.java @@ -1,5 +1,6 @@ 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; @@ -7,6 +8,7 @@ import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; +import java.util.List; /** * <p> @@ -22,6 +24,10 @@ 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; @@ -43,8 +49,20 @@ 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; @@ -58,6 +76,7 @@ private Boolean finish; private Boolean edit; private Boolean delay; + private Boolean parttime; @TableField("create_time") private Date createTime; @@ -67,6 +86,108 @@ @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; } @@ -76,6 +197,14 @@ return this; } + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + public Boolean getEdit() { return edit; } -- Gitblit v1.8.0