IBIZSample0017DTO.java 5.4 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
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;
23 24
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
25 26 27 28 29

/**
 * 服务DTO对象[IBIZSample0017DTO]
 */
@Data
30
@ApiModel("订单")
31 32 33 34 35 36 37 38 39 40 41 42
public class IBIZSample0017DTO extends DTOBase implements Serializable {

	private static final long serialVersionUID = 1L;

    /**
     * 属性 [ORDERUID]
     *
     */
    @JSONField(name = "orderuid")
    @JsonProperty("orderuid")
    @NotBlank(message = "[订单编号]不允许为空!")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
43
    @ApiModelProperty("订单编号")
44 45 46 47 48 49 50 51 52
    private String orderuid;

    /**
     * 属性 [MEMO]
     *
     */
    @JSONField(name = "memo")
    @JsonProperty("memo")
    @Size(min = 0, max = 2000, message = "内容长度必须小于等于[2000]")
53
    @ApiModelProperty("备注")
54 55 56 57 58 59 60 61
    private String memo;

    /**
     * 属性 [DETAILNUM]
     *
     */
    @JSONField(name = "detailnum")
    @JsonProperty("detailnum")
62
    @ApiModelProperty("明细数")
63 64 65 66 67 68 69 70
    private Integer detailnum;

    /**
     * 属性 [AMOUNT]
     *
     */
    @JSONField(name = "amount")
    @JsonProperty("amount")
71
    @ApiModelProperty("总计")
72 73 74 75 76 77 78 79 80
    private Double amount;

    /**
     * 属性 [ORDERTIME]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "ordertime" , format="yyyy-MM-dd")
    @JsonProperty("ordertime")
81
    @ApiModelProperty("订单时间")
82 83 84 85 86 87 88 89 90
    private Timestamp ordertime;

    /**
     * 属性 [CREATEMAN]
     *
     */
    @JSONField(name = "createman")
    @JsonProperty("createman")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
91
    @ApiModelProperty("建立人")
92 93 94 95 96 97 98 99 100
    private String createman;

    /**
     * 属性 [IBIZSAMPLE0017NAME]
     *
     */
    @JSONField(name = "ibizsample0017name")
    @JsonProperty("ibizsample0017name")
    @Size(min = 0, max = 200, message = "内容长度必须小于等于[200]")
101
    @ApiModelProperty("订单名称")
102 103 104 105 106 107 108 109 110
    private String ibizsample0017name;

    /**
     * 属性 [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")
111
    @ApiModelProperty("建立时间")
112 113 114 115 116 117 118 119 120
    private Timestamp createdate;

    /**
     * 属性 [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")
121
    @ApiModelProperty("更新时间")
122 123 124 125 126 127 128 129 130
    private Timestamp updatedate;

    /**
     * 属性 [ORDERTYPE]
     *
     */
    @JSONField(name = "ordertype")
    @JsonProperty("ordertype")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
131
    @ApiModelProperty("订单类型")
132 133 134 135 136 137 138 139 140
    private String ordertype;

    /**
     * 属性 [IBIZSAMPLE0017ID]
     *
     */
    @JSONField(name = "ibizsample0017id")
    @JsonProperty("ibizsample0017id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
141
    @ApiModelProperty("订单标识")
142 143 144 145 146 147 148 149 150
    private String ibizsample0017id;

    /**
     * 属性 [UPDATEMAN]
     *
     */
    @JSONField(name = "updateman")
    @JsonProperty("updateman")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
151
    @ApiModelProperty("更新人")
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    private String updateman;


    /**
     * 设置 [ORDERUID]
     */
    public void setOrderuid(String  orderuid){
        this.orderuid = orderuid ;
        this.modify("orderuid",orderuid);
    }

    /**
     * 设置 [MEMO]
     */
    public void setMemo(String  memo){
        this.memo = memo ;
        this.modify("memo",memo);
    }

    /**
     * 设置 [DETAILNUM]
     */
    public void setDetailnum(Integer  detailnum){
        this.detailnum = detailnum ;
        this.modify("detailnum",detailnum);
    }

    /**
     * 设置 [AMOUNT]
     */
    public void setAmount(Double  amount){
        this.amount = amount ;
        this.modify("amount",amount);
    }

    /**
     * 设置 [ORDERTIME]
     */
    public void setOrdertime(Timestamp  ordertime){
        this.ordertime = ordertime ;
        this.modify("ordertime",ordertime);
    }

    /**
     * 设置 [IBIZSAMPLE0017NAME]
     */
    public void setIbizsample0017name(String  ibizsample0017name){
        this.ibizsample0017name = ibizsample0017name ;
        this.modify("ibizsample0017name",ibizsample0017name);
    }

    /**
     * 设置 [ORDERTYPE]
     */
    public void setOrdertype(String  ordertype){
        this.ordertype = ordertype ;
        this.modify("ordertype",ordertype);
    }


}