物料导入繁体解析
This commit is contained in:
+11
-5
@@ -31,7 +31,7 @@ public class MaterialBaseInfoDTO extends BaseVOEntity {
|
||||
private Long materialBaseInfoId;
|
||||
|
||||
@ApiModelProperty("组织表ID")
|
||||
@Excel(name = "组织表ID")
|
||||
@Excel(name = "组织表id")
|
||||
private Long organizationId;
|
||||
|
||||
@ApiModelProperty("组织名称")
|
||||
@@ -39,7 +39,7 @@ public class MaterialBaseInfoDTO extends BaseVOEntity {
|
||||
private String organizationName;
|
||||
|
||||
@ApiModelProperty("一级组织表ID")
|
||||
@Excel(name = "一级组织表ID")
|
||||
@Excel(name = "一级组织表id")
|
||||
private Long topOrganizationId;
|
||||
|
||||
@ApiModelProperty("货主id")
|
||||
@@ -67,16 +67,22 @@ public class MaterialBaseInfoDTO extends BaseVOEntity {
|
||||
private String barCode;
|
||||
|
||||
@ApiModelProperty("物料分类编码")
|
||||
@Excel(name = "物料分类编码")
|
||||
@Excel(name = "物料分类编码", type = Excel.Type.EXPORT)
|
||||
@TableField(typeHandler = ListTypeHandler.class)
|
||||
private List<String> materialClassifyCode;
|
||||
|
||||
@ApiModelProperty("物料分类名称")
|
||||
@Excel(name = "物料分类名称")
|
||||
@Excel(name = "物料分类名称", type = Excel.Type.EXPORT)
|
||||
@TableField(typeHandler = ListTypeHandler.class)
|
||||
private List<String> materialClassifyName;
|
||||
@ApiModelProperty("物料分类编码(导入)")
|
||||
@Excel(name = "物料分类编码", type = Excel.Type.IMPORT)
|
||||
private String materialClassifyCodeImport;
|
||||
@ApiModelProperty("物料分类名称(导入)")
|
||||
@Excel(name = "物料分类名称", type = Excel.Type.IMPORT)
|
||||
private String materialClassifyNameImport;
|
||||
@ApiModelProperty("物料分类(导入)")
|
||||
@Excel(name = "物料分类")
|
||||
@Excel(name = "物料分类", type = Excel.Type.IMPORT)
|
||||
private String materialClassifyImport;
|
||||
|
||||
@ApiModelProperty("物料种类编码 数据字典")
|
||||
|
||||
Reference in New Issue
Block a user