IBIZAPPVIEWDTO.java 4.7 KB
Newer Older
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
package cn.ibizlab.demoapi.dto;

import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import java.math.BigInteger;
import java.util.Map;
import java.util.HashMap;
import java.io.Serializable;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import com.alibaba.fastjson.annotation.JSONField;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import cn.ibizlab.util.domain.DTOBase;
import cn.ibizlab.util.domain.DTOClient;
import lombok.Data;

/**
 * 服务DTO对象[IBIZAPPVIEWDTO]
 */
@Data
public class IBIZAPPVIEWDTO extends DTOBase implements Serializable {

	private static final long serialVersionUID = 1L;

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    /**
     * 属性 [CREATEMAN]
     *
     */
    @JSONField(name = "createman")
    @JsonProperty("createman")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
    private String createman;

    /**
     * 属性 [CREATEDATE]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "createdate" , format="yyyy-MM-dd HH:mm:ss")
    @JsonProperty("createdate")
    private Timestamp createdate;

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
    /**
     * 属性 [IBIZAPPVIEWNAME]
     *
     */
    @JSONField(name = "ibizappviewname")
    @JsonProperty("ibizappviewname")
    @Size(min = 0, max = 200, message = "内容长度必须小于等于[200]")
    private String ibizappviewname;

    /**
     * 属性 [IBIZAPPVIEWID]
     *
     */
    @JSONField(name = "ibizappviewid")
    @JsonProperty("ibizappviewid")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String ibizappviewid;

    /**
     * 属性 [UPDATEMAN]
     *
     */
    @JSONField(name = "updateman")
    @JsonProperty("updateman")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
    private String updateman;

    /**
     * 属性 [UPDATEDATE]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "updatedate" , format="yyyy-MM-dd HH:mm:ss")
    @JsonProperty("updatedate")
    private Timestamp updatedate;

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    /**
     * 属性 [IBIZAPPVIEWTYPE]
     *
     */
    @JSONField(name = "ibizappviewtype")
    @JsonProperty("ibizappviewtype")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String ibizappviewtype;

    /**
     * 属性 [DOCUMENTADDRESS]
     *
     */
    @JSONField(name = "documentaddress")
    @JsonProperty("documentaddress")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String documentaddress;

    /**
     * 属性 [INSTANCEADDRESS]
     *
     */
    @JSONField(name = "instanceaddress")
    @JsonProperty("instanceaddress")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String instanceaddress;

113 114 115 116 117 118 119 120 121
    /**
     * 属性 [VIEWDESCRIPTION]
     *
     */
    @JSONField(name = "viewdescription")
    @JsonProperty("viewdescription")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String viewdescription;

122 123 124 125 126 127 128 129
    /**
     * 属性 [AMOUNT]
     *
     */
    @JSONField(name = "amount")
    @JsonProperty("amount")
    private Integer amount;

130 131 132 133 134 135 136 137 138

    /**
     * 设置 [IBIZAPPVIEWNAME]
     */
    public void setIbizappviewname(String  ibizappviewname){
        this.ibizappviewname = ibizappviewname ;
        this.modify("ibizappviewname",ibizappviewname);
    }

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    /**
     * 设置 [IBIZAPPVIEWTYPE]
     */
    public void setIbizappviewtype(String  ibizappviewtype){
        this.ibizappviewtype = ibizappviewtype ;
        this.modify("ibizappviewtype",ibizappviewtype);
    }

    /**
     * 设置 [DOCUMENTADDRESS]
     */
    public void setDocumentaddress(String  documentaddress){
        this.documentaddress = documentaddress ;
        this.modify("documentaddress",documentaddress);
    }

    /**
     * 设置 [INSTANCEADDRESS]
     */
    public void setInstanceaddress(String  instanceaddress){
        this.instanceaddress = instanceaddress ;
        this.modify("instanceaddress",instanceaddress);
    }

163 164 165 166 167 168 169 170
    /**
     * 设置 [VIEWDESCRIPTION]
     */
    public void setViewdescription(String  viewdescription){
        this.viewdescription = viewdescription ;
        this.modify("viewdescription",viewdescription);
    }

171 172 173 174 175 176 177 178
    /**
     * 设置 [AMOUNT]
     */
    public void setAmount(Integer  amount){
        this.amount = amount ;
        this.modify("amount",amount);
    }

179 180 181 182

}