youjianchi
6 months ago
6 changed files with 106 additions and 3 deletions
@ -0,0 +1,39 @@ |
|||||
|
package com.ruoyi.erp.domain; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author xiguniang |
||||
|
* @description ErpMaterialReturnInspectionExcelDto |
||||
|
* @date 2024/5/11 21:07 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ErpMaterialReturnInspectionExcelDto implements Serializable { |
||||
|
@Excel(name = "退检单号") |
||||
|
private String returnInspectionNo; |
||||
|
@Excel(name = "料号") |
||||
|
private String materialNo; |
||||
|
@Excel(name = "物料名称") |
||||
|
private String materialName; |
||||
|
@Excel(name = "退检数量") |
||||
|
private Long returnInspectionNum; |
||||
|
@Excel(name = "退检类型") |
||||
|
private String returnInspectionType; |
||||
|
/** 领料时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "领料时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date pickMaterialTime; |
||||
|
@Excel(name = "退检备注") |
||||
|
private String returnInspectionRemark; |
||||
|
@Excel(name = "异常原因") |
||||
|
private String abnormalCause; |
||||
|
@Excel(name = "责任单位") |
||||
|
private String dutyUnit; |
||||
|
@Excel(name = "复检备注") |
||||
|
private String recheckRemark; |
||||
|
} |
Loading…
Reference in new issue