审计记录

sk-module-inspection/src/main/java/com/skua/modules/inspection/vo/InspectionFillGroupFillVO.java 3.9 KB
张雷 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
package com.skua.modules.inspection.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;

/**
 * @program: skboot
 * @description:
 * @author: xie chao
 * @create: 2020-12-16 15:22
 */
@Data
public class InspectionFillGroupFillVO {

    /**主键*/
    @ApiModelProperty(value = "主键")
    private String id;
    /**填报项名称*/
    @Excel(name = "填报项名称", width = 15)
    @ApiModelProperty(value = "填报项名称")
    private String fillName;
    /**填报项类型(1:文字,2:数字,3:选择)*/
    @Excel(name = "填报项类型(1:文字,2:数字,3:选择)", width = 15)
    @ApiModelProperty(value = "填报项类型(1:文字,2:数字,3:选择)")
    @Dict(dicCode = "inspection_fill_type")
    private String fillType;
    /**填报项标签*/
    @Excel(name = "填报项标签", width = 15)
    @ApiModelProperty(value = "填报项标签")
    @Dict(dicCode = "inspection_fill_label")
    private String fillLabel;
    /**填报项单位*/
    @Excel(name = "填报项单位", width = 15)
    @ApiModelProperty(value = "填报项单位")
    private String fillUnit;
    /**描述*/
    @Excel(name = "描述", width = 15)
    @ApiModelProperty(value = "描述")
    private String fillDesc;
    /**版块类型*/
    @Excel(name = "版块类型", width = 15)
    @ApiModelProperty(value = "版块类型")
    private String moduleType;
张雷 committed
48 49 50 51 52
    /**所属厂区*/
    @Excel(name = "所属厂区", width = 15)
    @ApiModelProperty(value = "所属厂区")
    @Dict(dictTable = "sys_depart", dicCode="id", dicText = "depart_name")
    private String departId;
张雷 committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    /**创建时间*/
    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private java.util.Date createTime;
    /**创建用户ID*/
    @Excel(name = "创建用户ID", width = 15)
    @ApiModelProperty(value = "创建用户ID")
    private String createBy;
    /**修改时间*/
    @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "修改时间")
    private java.util.Date updateTime;
    /**修改用户ID*/
    @Excel(name = "修改用户ID", width = 15)
    @ApiModelProperty(value = "修改用户ID")
    private String updateBy;
    /**所属部门*/
    @Excel(name = "所属部门", width = 15)
    @ApiModelProperty(value = "所属部门")
    private String createDept;
    /**所属公司*/
    @Excel(name = "所属公司", width = 15)
    @ApiModelProperty(value = "所属公司")
    private String createCmpy;
    /**删除标识(0:正常,1:删除)*/
    @Excel(name = "删除标识(0:正常,1:删除)", width = 15)
    @ApiModelProperty(value = "删除标识(0:正常,1:删除)")
    private Integer delFlag;


    private String inspectionItemsFillChoiceId;
    /**选择项名称*/
    @Excel(name = "选择项名称", width = 15)
    @ApiModelProperty(value = "选择项名称")
    private String choiceName;
    /**填报项ID*/
    @Excel(name = "填报项ID", width = 15)
    @ApiModelProperty(value = "填报项ID")
    private String inspectionFillId;
    /**选项状态(0:异常,1正常)*/
    @Excel(name = "选项状态(0:异常,1正常)", width = 15)
    @ApiModelProperty(value = "选项状态(0:异常,1正常)")
    private String choiceState;
    /**排序*/
    @Excel(name = "排序", width = 15)
    @ApiModelProperty(value = "排序")
    private String sort;
张雷 committed
104
}