package org.jeecg.modules.eam.vo;
|
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
|
@Data
|
@Accessors(chain = true)
|
public class OperationCertificateImportVo {
|
|
@Excel(name= "姓名")
|
private String name;
|
|
@Excel(name="性别")
|
private String sex;
|
|
@Excel(name = "工种")
|
private String profession;
|
|
@Excel(name = "技能等级")
|
private String technicalLevel;
|
|
@Excel(name = "工作证号")
|
private String workNo;
|
|
@Excel(name = "上岗证号")
|
private String appointmentCardNum;
|
|
@Excel(name = "统一编号")
|
private String equipmentNum;
|
|
@Excel(name = "设备名称")
|
private String equipmentName;
|
|
@Excel(name = "设备型号")
|
private String equipmentModel;
|
|
@Excel(name = "发证日期")
|
private Date issueDate;
|
|
@Excel(name = "备注")
|
private String remark;
|
|
}
|