package com.ruoyi.project.tr.specialCheck.domin.DTO; import lombok.Data; import java.time.LocalDateTime; @Data public class TbBaseCheckItemDTO { private String id; private String taskId; private String checkName; private String checkContent; private String checkWay; private String checkBasis; private String applicablePlace; private Byte deleted; private String createBy; private LocalDateTime createDate; private String updateBy; private LocalDateTime updateDate; }