package org.jeecg.modules.eam.entity; import java.io.Serializable; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableLogic; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.jeecg.common.aspect.annotation.Dict; import org.jeecg.common.constant.CommonConstant; import org.jeecg.common.system.base.entity.JeecgEntity; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import java.util.Date; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.UnsupportedEncodingException; /** * @Description: 操作证申请明细表 * @Author: jeecg-boot * @Date: 2023-10-17 * @Version: V1.0 */ @ApiModel(value="mom_eam_operation_certificate_apply_detail对象", description="操作证申请明细表") @Data @TableName("mom_eam_operation_certificate_apply_detail") public class OperationCertificateApplyDetail extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**操作证申请表ID*/ @ApiModelProperty(value = "操作证申请表ID") private String operationCertificateApplyId; /**用户ID*/ @Excel(name = "用户ID", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") @ApiModelProperty(value = "用户ID") private String userId; /**设备ID*/ @Excel(name = "设备ID", width = 15, dictTable = "mom_eam_equipment", dicText = "num", dicCode = "id ") @ApiModelProperty(value = "设备ID") private String equipmentIds; /**上岗证号*/ @Excel(name = "上岗证号", width = 15) @ApiModelProperty(value = "上岗证号") private String appointmentCardNum; /**补办原因*/ @Excel(name = "补办原因", width = 15) @ApiModelProperty(value = "补办原因") private String replaceReason; /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /**理论成绩*/ @Excel(name = "理论成绩", width = 15) @ApiModelProperty(value = "理论成绩") private Integer theoreticalResults; /**实操成绩*/ @Excel(name = "实操成绩", width = 15) @ApiModelProperty(value = "实操成绩") private Integer actualPerformance; /**考试结论*/ @Excel(name = "考试结论", width = 15) @ApiModelProperty(value = "考试结论") @Dict(dicCode="examinationConclusion") private String examinationConclusion; /**租户ID*/ @Excel(name = "租户ID", width = 15) @ApiModelProperty(value = "租户ID") private String tenantId; /**删除标志*/ @Excel(name = "删除标志", width = 15) @ApiModelProperty(value = "删除标志") @TableLogic private Integer delFlag = CommonConstant.DEL_FLAG_0; /**状态*/ @Excel(name = "状态", width = 15) @ApiModelProperty(value = "状态") private String status = CommonConstant.STATUS_1; /**属性字段1*/ @Excel(name = "属性字段1", width = 15) @ApiModelProperty(value = "属性字段1") private String uda1; /**属性字段2*/ @Excel(name = "属性字段2", width = 15) @ApiModelProperty(value = "属性字段2") private String uda2; /**属性字段3*/ @Excel(name = "属性字段3", width = 15) @ApiModelProperty(value = "属性字段3") private String uda3; /**属性字段4*/ @Excel(name = "属性字段4", width = 15) @ApiModelProperty(value = "属性字段4") private String uda4; /**属性字段5*/ @Excel(name = "属性字段5", width = 15) @ApiModelProperty(value = "属性字段5") private String uda5; }