parent
929cb84c54
commit
24a675f77b
@ -0,0 +1,39 @@
|
|||||||
|
package com.ruoyi.system.domain.check.dto;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author 13560
|
||||||
|
* @TableName td_check_type
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
public class CheckTypeDTO implements Serializable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查类
|
||||||
|
*/
|
||||||
|
private String checkType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查类名称
|
||||||
|
*/
|
||||||
|
private String typeName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查类型
|
||||||
|
*/
|
||||||
|
private List<CheckTypeItemDTO> checkTypeItemDTOList;
|
||||||
|
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
package com.ruoyi.system.domain.check.dto;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author 13560
|
||||||
|
* @TableName td_check_type
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
public class CheckTypeItemDTO implements Serializable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查类
|
||||||
|
*/
|
||||||
|
private String checkType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查类名称
|
||||||
|
*/
|
||||||
|
private String typeName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查项
|
||||||
|
*/
|
||||||
|
private String checkItems;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自查内容
|
||||||
|
*/
|
||||||
|
private String typeContent;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分值
|
||||||
|
*/
|
||||||
|
private String score;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 得分
|
||||||
|
*/
|
||||||
|
private String realScore;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 实有内容:检查了存打钩:1
|
||||||
|
*/
|
||||||
|
private String starts;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 扣分标准
|
||||||
|
*/
|
||||||
|
private String deductionCriteria;
|
||||||
|
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
}
|
Loading…
Reference in new issue