| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.modules.flowable.domain.vo.FlowTaskVo; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @Excel(name = "设备ID", width = 15) |
| | | @ApiModelProperty(value = "设备ID") |
| | | private String equipmentId; |
| | | /**HF编码*/ |
| | | @Excel(name = "HF编码", width = 15) |
| | | @ApiModelProperty(value = "HF编码") |
| | | private String hfCode; |
| | | /**操作工*/ |
| | | @Excel(name = "操作工", width = 15) |
| | | @ApiModelProperty(value = "操作工") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String confirmer; |
| | | /**操作工确认时间*/ |
| | | @Excel(name = "操作工确认时间", width = 15, format = "yyyy-MM-dd") |
| | |
| | | /**产品损失情况*/ |
| | | @Excel(name = "产品损失情况", width = 15) |
| | | @ApiModelProperty(value = "产品损失情况") |
| | | @Dict(dicCode = "yn") |
| | | private String productLoss; |
| | | /**产品损失质量影响分析*/ |
| | | @Excel(name = "产品损失质量影响分析", width = 15) |
| | |
| | | /**主管工艺*/ |
| | | @Excel(name = "主管工艺", width = 15) |
| | | @ApiModelProperty(value = "主管工艺") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String technologist; |
| | | /**主管工艺确认时间*/ |
| | | @Excel(name = "主管工艺确认时间", width = 15, format = "yyyy-MM-dd") |
| | |
| | | /**部级领导*/ |
| | | @Excel(name = "部级领导", width = 15) |
| | | @ApiModelProperty(value = "部级领导") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String deputyDepartment; |
| | | /**部级领导确认时间*/ |
| | | @Excel(name = "部级领导确认时间", width = 15, format = "yyyy-MM-dd") |
| | |
| | | private String equipmentModel; |
| | | @TableField(exist = false) |
| | | private String installationPosition; |
| | | |
| | | /**生产单位*/ |
| | | private String factoryName; |
| | | /**故障现象*/ |
| | | private String faultDescription; |
| | | /**批次号*/ |
| | | private String batchNumber; |
| | | /**加工零件号*/ |
| | | private String processingPart; |
| | | /**件数*/ |
| | | private String quantity; |
| | | } |