IBIZBOOKDTO.java 11.2 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
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对象[IBIZBOOKDTO]
 */
@Data
public class IBIZBOOKDTO extends DTOBase implements Serializable {

	private static final long serialVersionUID = 1L;

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

    /**
     * 属性 [IBIZBOOKNAME]
     *
     */
    @JSONField(name = "ibizbookname")
    @JsonProperty("ibizbookname")
47
    @NotBlank(message = "[图书名称]不允许为空!")
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 97 98 99 100 101
    @Size(min = 0, max = 200, message = "内容长度必须小于等于[200]")
    private String ibizbookname;

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

    /**
     * 属性 [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;

    /**
     * 属性 [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;

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

    /**
     * 属性 [PRICE]
     *
     */
    @JSONField(name = "price")
    @JsonProperty("price")
102
    private Double price;
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

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

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

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

130 131 132 133 134 135 136 137 138
    /**
     * 属性 [SUBTEXT]
     *
     */
    @JSONField(name = "subtext")
    @JsonProperty("subtext")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String subtext;

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    /**
     * 属性 [LENDOUTTIME]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "lendouttime" , format="yyyy-MM-dd")
    @JsonProperty("lendouttime")
    @NotNull(message = "[借出日期]不允许为空!")
    private Timestamp lendouttime;

    /**
     * 属性 [RETURNTIME]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "returntime" , format="yyyy-MM-dd")
    @JsonProperty("returntime")
    @NotNull(message = "[归还日期]不允许为空!")
    private Timestamp returntime;

159 160 161 162 163 164 165 166 167
    /**
     * 属性 [ICON]
     *
     */
    @JSONField(name = "icon")
    @JsonProperty("icon")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String icon;

168 169 170 171 172 173 174 175 176
    /**
     * 属性 [SAILSTATE]
     *
     */
    @JSONField(name = "sailstate")
    @JsonProperty("sailstate")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String sailstate;

177 178 179 180 181 182 183 184
    /**
     * 属性 [BORROWSTATUS]
     *
     */
    @JSONField(name = "borrowstatus")
    @JsonProperty("borrowstatus")
    private Integer borrowstatus;

185 186 187 188 189 190 191 192 193
    /**
     * 属性 [STEPSTATUS]
     *
     */
    @JSONField(name = "stepstatus")
    @JsonProperty("stepstatus")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String stepstatus;

194 195 196 197 198 199 200 201 202
    /**
     * 属性 [BORROWER]
     *
     */
    @JSONField(name = "borrower")
    @JsonProperty("borrower")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String borrower;

203 204 205 206 207 208 209 210 211
    /**
     * 属性 [BORROWWAY]
     *
     */
    @JSONField(name = "borrowway")
    @JsonProperty("borrowway")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
    private String borrowway;

212 213 214 215 216 217 218 219 220
    /**
     * 属性 [RETURNLIB]
     *
     */
    @JSONField(name = "returnlib")
    @JsonProperty("returnlib")
    @Size(min = 0, max = 60, message = "内容长度必须小于等于[60]")
    private String returnlib;

221 222 223 224 225 226 227 228 229
    /**
     * 属性 [BORROWERID]
     *
     */
    @JSONField(name = "borrowerid")
    @JsonProperty("borrowerid")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String borrowerid;

230 231 232 233 234 235
    /**
     * 属性 [BORROWER1]
     *
     */
    @JSONField(name = "borrower1")
    @JsonProperty("borrower1")
236
    @Size(min = 0, max = 1048576, message = "内容长度必须小于等于[1048576]")
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
    private String borrower1;

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

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

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

    /**
     * 属性 [BORROWER3]
     *
     */
    @JSONField(name = "borrower3")
    @JsonProperty("borrower3")
272
    @Size(min = 0, max = 1048576, message = "内容长度必须小于等于[1048576]")
273 274
    private String borrower3;

275 276 277 278 279 280 281 282 283
    /**
     * 属性 [BORROWER3_ID]
     *
     */
    @JSONField(name = "borrower3_id")
    @JsonProperty("borrower3_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String borrower3Id;

284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303

    /**
     * 设置 [IBIZBOOKNAME]
     */
    public void setIbizbookname(String  ibizbookname){
        this.ibizbookname = ibizbookname ;
        this.modify("ibizbookname",ibizbookname);
    }

    /**
     * 设置 [AUTHOR]
     */
    public void setAuthor(String  author){
        this.author = author ;
        this.modify("author",author);
    }

    /**
     * 设置 [PRICE]
     */
304
    public void setPrice(Double  price){
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
        this.price = price ;
        this.modify("price",price);
    }

    /**
     * 设置 [PRESS]
     */
    public void setPress(String  press){
        this.press = press ;
        this.modify("press",press);
    }

    /**
     * 设置 [TYPE]
     */
    public void setType(String  type){
        this.type = type ;
        this.modify("type",type);
    }

325 326 327 328 329 330 331 332
    /**
     * 设置 [BOOKNUMBER]
     */
    public void setBooknumber(Integer  booknumber){
        this.booknumber = booknumber ;
        this.modify("booknumber",booknumber);
    }

333 334 335 336 337 338 339 340
    /**
     * 设置 [SUBTEXT]
     */
    public void setSubtext(String  subtext){
        this.subtext = subtext ;
        this.modify("subtext",subtext);
    }

341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
    /**
     * 设置 [LENDOUTTIME]
     */
    public void setLendouttime(Timestamp  lendouttime){
        this.lendouttime = lendouttime ;
        this.modify("lendouttime",lendouttime);
    }

    /**
     * 设置 [RETURNTIME]
     */
    public void setReturntime(Timestamp  returntime){
        this.returntime = returntime ;
        this.modify("returntime",returntime);
    }

357 358 359 360 361 362 363 364
    /**
     * 设置 [ICON]
     */
    public void setIcon(String  icon){
        this.icon = icon ;
        this.modify("icon",icon);
    }

365 366 367 368 369 370 371 372
    /**
     * 设置 [SAILSTATE]
     */
    public void setSailstate(String  sailstate){
        this.sailstate = sailstate ;
        this.modify("sailstate",sailstate);
    }

373 374 375 376 377 378 379 380
    /**
     * 设置 [BORROWSTATUS]
     */
    public void setBorrowstatus(Integer  borrowstatus){
        this.borrowstatus = borrowstatus ;
        this.modify("borrowstatus",borrowstatus);
    }

381 382 383 384 385 386 387 388
    /**
     * 设置 [STEPSTATUS]
     */
    public void setStepstatus(String  stepstatus){
        this.stepstatus = stepstatus ;
        this.modify("stepstatus",stepstatus);
    }

389 390 391 392 393 394 395 396
    /**
     * 设置 [BORROWER]
     */
    public void setBorrower(String  borrower){
        this.borrower = borrower ;
        this.modify("borrower",borrower);
    }

397 398 399 400 401 402 403 404
    /**
     * 设置 [BORROWWAY]
     */
    public void setBorrowway(String  borrowway){
        this.borrowway = borrowway ;
        this.modify("borrowway",borrowway);
    }

405 406 407 408 409 410 411 412
    /**
     * 设置 [RETURNLIB]
     */
    public void setReturnlib(String  returnlib){
        this.returnlib = returnlib ;
        this.modify("returnlib",returnlib);
    }

413 414 415 416 417 418 419 420
    /**
     * 设置 [BORROWERID]
     */
    public void setBorrowerid(String  borrowerid){
        this.borrowerid = borrowerid ;
        this.modify("borrowerid",borrowerid);
    }

421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
    /**
     * 设置 [BORROWER1]
     */
    public void setBorrower1(String  borrower1){
        this.borrower1 = borrower1 ;
        this.modify("borrower1",borrower1);
    }

    /**
     * 设置 [BORROWER1_ID]
     */
    public void setBorrower1Id(String  borrower1Id){
        this.borrower1Id = borrower1Id ;
        this.modify("borrower1_id",borrower1Id);
    }

    /**
     * 设置 [BORROWER2]
     */
    public void setBorrower2(String  borrower2){
        this.borrower2 = borrower2 ;
        this.modify("borrower2",borrower2);
    }

    /**
     * 设置 [BORROWER2_ID]
     */
    public void setBorrower2Id(String  borrower2Id){
        this.borrower2Id = borrower2Id ;
        this.modify("borrower2_id",borrower2Id);
    }

    /**
     * 设置 [BORROWER3]
     */
    public void setBorrower3(String  borrower3){
        this.borrower3 = borrower3 ;
        this.modify("borrower3",borrower3);
    }

461 462 463 464 465 466 467 468
    /**
     * 设置 [BORROWER3_ID]
     */
    public void setBorrower3Id(String  borrower3Id){
        this.borrower3Id = borrower3Id ;
        this.modify("borrower3_id",borrower3Id);
    }

469 470 471 472

}