jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.dto.mapping;
 
 
 
import com.java110.dto.system.BeanSvcCont;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 映射关系
 * Created by wuxw on 2017/3/1.
 */
public class CodeMapping extends BeanSvcCont implements Serializable{
 
    public CodeMapping() {
        this.setBeanName(this.getClass().getName());
    }
 
    private int id;
 
    //域,如常量域域,如常量域
    private String domain;
 
    //名称
    private String name;
 
    //键
    private String h_code;
 
    //值
    private String p_code;
 
    //描述
    private String description;
 
    //创建时间
    private Date create_dt;
 
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getDomain() {
        return domain;
    }
 
    public void setDomain(String domain) {
        this.domain = domain;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getH_code() {
        return h_code;
    }
 
    public void setH_code(String h_code) {
        this.h_code = h_code;
    }
 
    public String getP_code() {
        return p_code;
    }
 
    public void setP_code(String p_code) {
        this.p_code = p_code;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public Date getCreate_dt() {
        return create_dt;
    }
 
    public void setCreate_dt(Date create_dt) {
        this.create_dt = create_dt;
    }
}