道路线索应急巡查系统服务后台
feiyu02
2025-04-22 41548e262362faf603a71e066e01bd4ef46619d2
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
136
137
138
139
140
141
package com.flightfeather.grid.domain.ds1.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "g_t_grid_scheme")
public class GridScheme {
    @Id
    @Column(name = "GS_Id")
    private Integer gsId;
 
    /**
     * 方案名称
     */
    @Column(name = "GS_Name")
    private String gsName;
 
    @Column(name = "GS_Creator_Id")
    private String gsCreatorId;
 
    @Column(name = "GS_Creator_Name")
    private String gsCreatorName;
 
    @Column(name = "GS_Delete")
    private Boolean gsDelete;
 
    @Column(name = "GS_Create_Time")
    private Date gsCreateTime;
 
    /**
     * 方案描述
     */
    @Column(name = "GS_Description")
    private String gsDescription;
 
    /**
     * @return GS_Id
     */
    public Integer getGsId() {
        return gsId;
    }
 
    /**
     * @param gsId
     */
    public void setGsId(Integer gsId) {
        this.gsId = gsId;
    }
 
    /**
     * 获取方案名称
     *
     * @return GS_Name - 方案名称
     */
    public String getGsName() {
        return gsName;
    }
 
    /**
     * 设置方案名称
     *
     * @param gsName 方案名称
     */
    public void setGsName(String gsName) {
        this.gsName = gsName == null ? null : gsName.trim();
    }
 
    /**
     * @return GS_Creator_Id
     */
    public String getGsCreatorId() {
        return gsCreatorId;
    }
 
    /**
     * @param gsCreatorId
     */
    public void setGsCreatorId(String gsCreatorId) {
        this.gsCreatorId = gsCreatorId == null ? null : gsCreatorId.trim();
    }
 
    /**
     * @return GS_Creator_Name
     */
    public String getGsCreatorName() {
        return gsCreatorName;
    }
 
    /**
     * @param gsCreatorName
     */
    public void setGsCreatorName(String gsCreatorName) {
        this.gsCreatorName = gsCreatorName == null ? null : gsCreatorName.trim();
    }
 
    /**
     * @return GS_Delete
     */
    public Boolean getGsDelete() {
        return gsDelete;
    }
 
    /**
     * @param gsDelete
     */
    public void setGsDelete(Boolean gsDelete) {
        this.gsDelete = gsDelete;
    }
 
    /**
     * @return GS_Create_Time
     */
    public Date getGsCreateTime() {
        return gsCreateTime;
    }
 
    /**
     * @param gsCreateTime
     */
    public void setGsCreateTime(Date gsCreateTime) {
        this.gsCreateTime = gsCreateTime;
    }
 
    /**
     * 获取方案描述
     *
     * @return GS_Description - 方案描述
     */
    public String getGsDescription() {
        return gsDescription;
    }
 
    /**
     * 设置方案描述
     *
     * @param gsDescription 方案描述
     */
    public void setGsDescription(String gsDescription) {
        this.gsDescription = gsDescription == null ? null : gsDescription.trim();
    }
}