feat(ebom): 导入目标的必填字段添加“*”符号
This commit is contained in:
parent
bf1e3349e3
commit
ac7a5e454e
|
|
@ -1,7 +1,6 @@
|
|||
package com.nflg.product.bomnew.pojo.dto;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.nflg.product.base.core.conmon.util.SessionUtil;
|
||||
import com.nflg.product.bomnew.constant.VirtualPackageTypeEnum;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
|
@ -24,7 +23,7 @@ public class BomNewEBomImportExcelDTO {
|
|||
private String projectType;
|
||||
|
||||
|
||||
@ExcelColumn(value = "物料编码")
|
||||
@ExcelColumn(value = "物料编码*")
|
||||
private String materialNo;
|
||||
|
||||
|
||||
|
|
@ -36,7 +35,7 @@ public class BomNewEBomImportExcelDTO {
|
|||
private String materialDesc;
|
||||
|
||||
|
||||
@ExcelColumn(value = "数量")
|
||||
@ExcelColumn(value = "数量*")
|
||||
private BigDecimal num;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ public class EbomExcelDTO extends BaseImportExcelDTO {
|
|||
/**
|
||||
* 父级物料编号
|
||||
*/
|
||||
@ExcelColumn("抬头物料")
|
||||
@ExcelColumn("抬头物料*")
|
||||
private String parentMaterialNo;
|
||||
|
||||
/**
|
||||
|
|
@ -33,7 +33,7 @@ public class EbomExcelDTO extends BaseImportExcelDTO {
|
|||
/**
|
||||
* 物料编号
|
||||
*/
|
||||
@ExcelColumn("项目物料")
|
||||
@ExcelColumn("项目物料*")
|
||||
private String materialNo;
|
||||
|
||||
/**
|
||||
|
|
@ -45,7 +45,7 @@ public class EbomExcelDTO extends BaseImportExcelDTO {
|
|||
/**
|
||||
* 数量
|
||||
*/
|
||||
@ExcelColumn("数量")
|
||||
@ExcelColumn("数量*")
|
||||
private BigDecimal num;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue