kimi
2020-02-10 0433821d269c0c248174af1a39ed574763add165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-01-15
 */
@TableName("project_deal")
public class ProjectDeal extends Model<ProjectDeal> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    @TableField("scheme_detail_id")
    private String schemeDetailId;
 
    @TableField("scheme_id")
    private String schemeId;
 
    private String desp;
 
    private String attachment;
 
    @TableField("create_time")
    private Date createTime;
 
    @TableField("update_time")
    private Date updateTime;
 
    public String getSchemeId() {
        return schemeId;
    }
 
    public ProjectDeal setSchemeId(String schemeId) {
        this.schemeId = schemeId;
        return this;
    }
 
    public String getId() {
        return id;
    }
 
    public ProjectDeal setId(String id) {
        this.id = id;
        return this;
    }
    public String getSchemeDetailId() {
        return schemeDetailId;
    }
 
    public ProjectDeal setSchemeDetailId(String schemeDetailId) {
        this.schemeDetailId = schemeDetailId;
        return this;
    }
    public String getDesp() {
        return desp;
    }
 
    public ProjectDeal setDesp(String desp) {
        this.desp = desp;
        return this;
    }
    public String getAttachment() {
        return attachment;
    }
 
    public ProjectDeal setAttachment(String attachment) {
        this.attachment = attachment;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public ProjectDeal setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public ProjectDeal setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "ProjectDeal{" +
        "id=" + id +
        ", schemeDetailId=" + schemeDetailId +
        ", desp=" + desp +
        ", attachment=" + attachment +
        ", createTime=" + createTime +
        ", updateTime=" + updateTime +
        "}";
    }
}