package com.ruoyi.project.tr.specialCheck.domin.DTO;
|
|
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;
|
|
private LocalDateTime createDate;
|
|
private String updateBy;
|
|
private LocalDateTime updateDate;
|
}
|