fwq
2024-04-23 bdd39fac56c367b36d6c41ef2cd5c9f35926013f
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt;
F 2
3 import java.io.Serializable;
4 import java.util.Date;
5
6 /**
7  * 基础实体类
8  */
9 public class BaseDt implements Serializable {
10
11     private String id;
12
13     private Integer isDel;
14
15     private Date createTime;
16
17     private Date editTime;
18
19
20     public static final int NO = 0;
21     public static final int YES = 1;
22
23     public BaseDt()
24     {
25
26     }
27
28     public String getId() {
29         return id;
30     }
31
32     public void setId(String id) {
33         this.id = id;
34     }
35
36     public Integer getIsDel() {
37         return isDel;
38     }
39
40     public void setIsDel(Integer isDel) {
41         this.isDel = isDel;
42     }
43
44     public Date getCreateTime() {
45         return createTime;
46     }
47
48     public void setCreateTime(Date createTime) {
49         this.createTime = createTime;
50     }
51
52     public Date getEditTime() {
53         return editTime;
54     }
55
56     public void setEditTime(Date editTime) {
57         this.editTime = editTime;
58     }
59 }