AssetDetailGroup.java 9.91 KB
Newer Older
1
package pwc.taxtech.atms.entity;
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
9
 * This class corresponds to the database table asset_detail_group
10 11 12
 *
 * @mbg.generated do_not_delete_during_merge
 */
gary's avatar
gary committed
13
public class AssetDetailGroup extends BaseEntity implements Serializable {
14 15 16
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
17
     * This field corresponds to the database column asset_detail_group.id
18 19 20
     *
     * @mbg.generated
     */
gary's avatar
gary committed
21
    private Long id;
22 23

    /**
gary's avatar
gary committed
24 25
     * Database Column Remarks:
     *   表asset_group的主键
26 27
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
28
     * This field corresponds to the database column asset_detail_group.asset_group_id
29 30 31
     *
     * @mbg.generated
     */
gary's avatar
gary committed
32
    private Long assetGroupId;
33 34

    /**
gary's avatar
gary committed
35 36
     * Database Column Remarks:
     *   资产分类二级分类名称
37 38
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
39
     * This field corresponds to the database column asset_detail_group.detail_group_name
40 41 42
     *
     * @mbg.generated
     */
neo's avatar
neo committed
43
    private String detailGroupName;
44 45

    /**
gary's avatar
gary committed
46 47
     * Database Column Remarks:
     *   隶属的资产一级分类的类型代码
48 49
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
50
     * This field corresponds to the database column asset_detail_group.asset_group_type
51 52 53
     *
     * @mbg.generated
     */
neo's avatar
neo committed
54
    private Integer assetGroupType;
55 56 57 58

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
59
     * This field corresponds to the database column asset_detail_group.group_year
60 61 62
     *
     * @mbg.generated
     */
neo's avatar
neo committed
63
    private Integer groupYear;
64 65 66 67

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
68
     * This field corresponds to the database column asset_detail_group.create_time
69 70 71
     *
     * @mbg.generated
     */
neo's avatar
neo committed
72
    private Date createTime;
73 74 75 76

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
77
     * This field corresponds to the database column asset_detail_group.update_time
78 79 80
     *
     * @mbg.generated
     */
neo's avatar
neo committed
81
    private Date updateTime;
82 83

    /**
gary's avatar
gary committed
84 85
     * Database Column Remarks:
     *   二级分类的类型代码
86 87
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
88
     * This field corresponds to the database column asset_detail_group.detail_group_type
89 90 91
     *
     * @mbg.generated
     */
neo's avatar
neo committed
92
    private Integer detailGroupType;
93 94 95 96

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
97
     * This field corresponds to the database column asset_detail_group.key_values
98 99 100
     *
     * @mbg.generated
     */
neo's avatar
neo committed
101
    private String keyValues;
102 103 104

    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
105
     * This field corresponds to the database table asset_detail_group
106 107 108 109 110 111 112
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
113
     * This method returns the value of the database column asset_detail_group.id
114
     *
gary's avatar
gary committed
115
     * @return the value of asset_detail_group.id
116 117 118
     *
     * @mbg.generated
     */
gary's avatar
gary committed
119
    public Long getId() {
120 121 122 123 124
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
125
     * This method sets the value of the database column asset_detail_group.id
126
     *
gary's avatar
gary committed
127
     * @param id the value for asset_detail_group.id
128 129 130
     *
     * @mbg.generated
     */
gary's avatar
gary committed
131 132
    public void setId(Long id) {
        this.id = id;
133 134 135 136
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
137
     * This method returns the value of the database column asset_detail_group.asset_group_id
138
     *
gary's avatar
gary committed
139
     * @return the value of asset_detail_group.asset_group_id
140 141 142
     *
     * @mbg.generated
     */
gary's avatar
gary committed
143
    public Long getAssetGroupId() {
neo's avatar
neo committed
144
        return assetGroupId;
145 146 147 148
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
149
     * This method sets the value of the database column asset_detail_group.asset_group_id
150
     *
gary's avatar
gary committed
151
     * @param assetGroupId the value for asset_detail_group.asset_group_id
152 153 154
     *
     * @mbg.generated
     */
gary's avatar
gary committed
155 156
    public void setAssetGroupId(Long assetGroupId) {
        this.assetGroupId = assetGroupId;
157 158 159 160
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
161
     * This method returns the value of the database column asset_detail_group.detail_group_name
162
     *
gary's avatar
gary committed
163
     * @return the value of asset_detail_group.detail_group_name
164 165 166
     *
     * @mbg.generated
     */
neo's avatar
neo committed
167 168
    public String getDetailGroupName() {
        return detailGroupName;
169 170 171 172
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
173
     * This method sets the value of the database column asset_detail_group.detail_group_name
174
     *
gary's avatar
gary committed
175
     * @param detailGroupName the value for asset_detail_group.detail_group_name
176 177 178
     *
     * @mbg.generated
     */
neo's avatar
neo committed
179 180
    public void setDetailGroupName(String detailGroupName) {
        this.detailGroupName = detailGroupName == null ? null : detailGroupName.trim();
181 182 183 184
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
185
     * This method returns the value of the database column asset_detail_group.asset_group_type
186
     *
gary's avatar
gary committed
187
     * @return the value of asset_detail_group.asset_group_type
188 189 190
     *
     * @mbg.generated
     */
neo's avatar
neo committed
191 192
    public Integer getAssetGroupType() {
        return assetGroupType;
193 194 195 196
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
197
     * This method sets the value of the database column asset_detail_group.asset_group_type
198
     *
gary's avatar
gary committed
199
     * @param assetGroupType the value for asset_detail_group.asset_group_type
200 201 202
     *
     * @mbg.generated
     */
neo's avatar
neo committed
203 204
    public void setAssetGroupType(Integer assetGroupType) {
        this.assetGroupType = assetGroupType;
205 206 207 208
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
209
     * This method returns the value of the database column asset_detail_group.group_year
210
     *
gary's avatar
gary committed
211
     * @return the value of asset_detail_group.group_year
212 213 214
     *
     * @mbg.generated
     */
neo's avatar
neo committed
215 216
    public Integer getGroupYear() {
        return groupYear;
217 218 219 220
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
221
     * This method sets the value of the database column asset_detail_group.group_year
222
     *
gary's avatar
gary committed
223
     * @param groupYear the value for asset_detail_group.group_year
224 225 226
     *
     * @mbg.generated
     */
neo's avatar
neo committed
227 228
    public void setGroupYear(Integer groupYear) {
        this.groupYear = groupYear;
229 230 231 232
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
233
     * This method returns the value of the database column asset_detail_group.create_time
234
     *
gary's avatar
gary committed
235
     * @return the value of asset_detail_group.create_time
236 237 238
     *
     * @mbg.generated
     */
neo's avatar
neo committed
239 240
    public Date getCreateTime() {
        return createTime;
241 242 243 244
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
245
     * This method sets the value of the database column asset_detail_group.create_time
246
     *
gary's avatar
gary committed
247
     * @param createTime the value for asset_detail_group.create_time
248 249 250
     *
     * @mbg.generated
     */
neo's avatar
neo committed
251 252
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
253 254 255 256
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
257
     * This method returns the value of the database column asset_detail_group.update_time
258
     *
gary's avatar
gary committed
259
     * @return the value of asset_detail_group.update_time
260 261 262
     *
     * @mbg.generated
     */
neo's avatar
neo committed
263 264
    public Date getUpdateTime() {
        return updateTime;
265 266 267 268
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
269
     * This method sets the value of the database column asset_detail_group.update_time
270
     *
gary's avatar
gary committed
271
     * @param updateTime the value for asset_detail_group.update_time
272 273 274
     *
     * @mbg.generated
     */
neo's avatar
neo committed
275 276
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
277 278 279 280
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
281
     * This method returns the value of the database column asset_detail_group.detail_group_type
282
     *
gary's avatar
gary committed
283
     * @return the value of asset_detail_group.detail_group_type
284 285 286
     *
     * @mbg.generated
     */
neo's avatar
neo committed
287 288
    public Integer getDetailGroupType() {
        return detailGroupType;
289 290 291 292
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
293
     * This method sets the value of the database column asset_detail_group.detail_group_type
294
     *
gary's avatar
gary committed
295
     * @param detailGroupType the value for asset_detail_group.detail_group_type
296 297 298
     *
     * @mbg.generated
     */
neo's avatar
neo committed
299 300
    public void setDetailGroupType(Integer detailGroupType) {
        this.detailGroupType = detailGroupType;
301 302 303 304
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
305
     * This method returns the value of the database column asset_detail_group.key_values
306
     *
gary's avatar
gary committed
307
     * @return the value of asset_detail_group.key_values
308 309 310
     *
     * @mbg.generated
     */
neo's avatar
neo committed
311 312
    public String getKeyValues() {
        return keyValues;
313 314 315 316
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
317
     * This method sets the value of the database column asset_detail_group.key_values
318
     *
gary's avatar
gary committed
319
     * @param keyValues the value for asset_detail_group.key_values
320 321 322
     *
     * @mbg.generated
     */
neo's avatar
neo committed
323 324
    public void setKeyValues(String keyValues) {
        this.keyValues = keyValues == null ? null : keyValues.trim();
325 326 327 328
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
329
     * This method corresponds to the database table asset_detail_group
330 331 332 333 334 335 336 337 338 339
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", id=").append(id);
neo's avatar
neo committed
340 341 342 343 344 345 346 347
        sb.append(", assetGroupId=").append(assetGroupId);
        sb.append(", detailGroupName=").append(detailGroupName);
        sb.append(", assetGroupType=").append(assetGroupType);
        sb.append(", groupYear=").append(groupYear);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append(", detailGroupType=").append(detailGroupType);
        sb.append(", keyValues=").append(keyValues);
348 349 350 351
        sb.append("]");
        return sb.toString();
    }
}