xiangpei
2024-03-21 2d5199d47279bedee6b05872f8b6eafa6b473f31
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 【请填写功能名称】对象 t_contract
 * 
 * @author ruoyi
 * @date 2024-03-12
 */
public class TContract extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 公司id */
    @Excel(name = "公司id")
    private Long companyId;
 
    /** 公司名 */
    @Excel(name = "公司名")
    private String companyName;
 
    /** 对接公安部门id */
    @Excel(name = "对接公安部门id")
    private Long deptId;
 
    /** 部门名称 */
    @Excel(name = "部门名称")
    private String deptName;
 
    /** 合同明细json */
    @Excel(name = "合同明细json")
    private String detail;
 
    /** 开始时间 */
    @Excel(name = "开始时间")
    private Date startTime;
 
    /** 截止时间 */
    @Excel(name = "截止时间")
    private Date endTime;
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setCompanyId(Long companyId) 
    {
        this.companyId = companyId;
    }
 
    public Long getCompanyId() 
    {
        return companyId;
    }
    public void setCompanyName(String companyName) 
    {
        this.companyName = companyName;
    }
 
    public String getCompanyName() 
    {
        return companyName;
    }
    public void setDeptId(Long deptId) 
    {
        this.deptId = deptId;
    }
 
    public Long getDeptId() 
    {
        return deptId;
    }
    public void setDeptName(String deptName) 
    {
        this.deptName = deptName;
    }
 
    public String getDeptName() 
    {
        return deptName;
    }
    public void setDetail(String detail) 
    {
        this.detail = detail;
    }
 
    public String getDetail() 
    {
        return detail;
    }
 
    @Override
    public String toString() {
        return "TContract{" +
                "id=" + id +
                ", companyId=" + companyId +
                ", companyName='" + companyName + '\'' +
                ", deptId=" + deptId +
                ", deptName='" + deptName + '\'' +
                ", detail='" + detail + '\'' +
                ", startTime=" + startTime +
                ", endTime=" + endTime +
                '}';
    }
}