| | |
| | | package com.ruoyi.project.tr.specialCheck.domin.DTO;
|
| | |
|
| | | import com.fasterxml.jackson.annotation.JsonFormat;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.time.LocalDateTime;
|
| | |
|
| | | @Data
|
| | | public class TbBaseCheckScoreDTO {
|
| | |
|
| | | private String id;
|
| | |
|
| | | private String checkItemId;
|
| | |
|
| | | private String isReject;
|
| | |
|
| | | private String deductPoint;
|
| | |
|
| | | private String deductIllustrate;
|
| | |
|
| | | private Byte deleted;
|
| | |
|
| | | private String createBy;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime createDate;
|
| | |
|
| | | private String updateBy;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime updateDate;
|
| | | }
|
| | | package com.ruoyi.project.tr.specialCheck.domin.DTO; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class TbBaseCheckScoreDTO { |
| | | |
| | | private String id; |
| | | |
| | | private String checkItemId; |
| | | |
| | | private String isReject; |
| | | |
| | | private String deductPoint; |
| | | |
| | | private String deductIllustrate; |
| | | |
| | | private Byte deleted; |
| | | |
| | | private String createBy; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createDate; |
| | | |
| | | private String updateBy; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime updateDate; |
| | | } |