Helius
2020-12-15 2914588a65371a3ce43f678cde0a26cd8da26611
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
package com.matrix.core.pojo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.anotations.Extend;
import com.matrix.core.constance.MatrixConstance;
import net.sf.json.JSONObject;
 
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
 
/**
 * bean对象的基类
 * 
 * @author JIANGYOUYAO
 * @email 935090232@qq.com
 * @date 2017年11月30日
 */
public class EntityDTO  implements Serializable{
 
    @Extend
    private static final long serialVersionUID = 1L;
 
    private String createBy;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone="GMT+8")
    private Date createTime;
 
    private String updateBy;
 
    private Date updateTime;
 
    private HashMap<String, Object> dicMap = new HashMap<>();
 
 
 
    public HashMap<String, Object> getDicMap() {
        return dicMap;
    }
 
    public void setDicMap(HashMap<String, Object> dicMap) {
        this.dicMap = dicMap;
    }
 
    public String getCreateBy() {
        return createBy;
    }
 
    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getUpdateBy() {
        return updateBy;
    }
 
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    @Override
    public String toString() {
        return JSONObject.fromObject(this).toString();
    }
 
}