DictionaryDto.java 2.26 KB
Newer Older
1 2
package pwc.taxtech.atms.dto.taxadmin;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5 6 7 8 9 10 11
import java.util.Date;

public class DictionaryDto {
    private String Code;
    private Date CreateTime;
    private String DictionaryKey;
    private String DictionaryValue;
12
    @JsonProperty("ID")
13
    private String id;
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
    private Boolean IsActive;
    private Integer OrderIndex;
    private String ParentCode;
    private String Remark;
    private Date UpdateTime;

    public String getCode() {
        return Code;
    }

    public void setCode(String code) {
        Code = code;
    }

    public Date getCreateTime() {
        return CreateTime;
    }

    public void setCreateTime(Date createTime) {
        CreateTime = createTime;
    }

    public String getDictionaryKey() {
        return DictionaryKey;
    }

    public void setDictionaryKey(String dictionaryKey) {
        DictionaryKey = dictionaryKey;
    }

    public String getDictionaryValue() {
        return DictionaryValue;
    }

    public void setDictionaryValue(String dictionaryValue) {
        DictionaryValue = dictionaryValue;
    }

52 53
    public String getId() {
        return id;
54 55
    }

56 57
    public void setId(String id) {
        this.id = id;
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
    }

    public Boolean getActive() {
        return IsActive;
    }

    public void setActive(Boolean active) {
        IsActive = active;
    }

    public Integer getOrderIndex() {
        return OrderIndex;
    }

    public void setOrderIndex(Integer orderIndex) {
        OrderIndex = orderIndex;
    }

    public String getParentCode() {
        return ParentCode;
    }

    public void setParentCode(String parentCode) {
        ParentCode = parentCode;
    }

    public String getRemark() {
        return Remark;
    }

    public void setRemark(String remark) {
        Remark = remark;
    }

    public Date getUpdateTime() {
        return UpdateTime;
    }

    public void setUpdateTime(Date updateTime) {
        UpdateTime = updateTime;
    }

    public DictionaryDto() {
        Code = "124";
        CreateTime = new Date();
        DictionaryKey = "d1";
        DictionaryValue = "dv";
105
        this.id = "1234";
106 107 108 109 110 111 112
        IsActive = true;
        OrderIndex = 1;
        ParentCode = "1";
        Remark = "mark";
        UpdateTime = new Date();
    }
}