You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
677 B

2 years ago
  1. package com.spring.modules.code.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import lombok.Data;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.util.Date;
  7. @TableName("drawing_list")
  8. @Data
  9. public class CodeDrawing {
  10. private String site;
  11. private String drawingNo;
  12. private String drawingDesc;
  13. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  14. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  15. private Date createDate;
  16. private String creator;
  17. private String seqFlag;
  18. private String drawingNoNew;
  19. private String remark;
  20. }