仓库添加是否启用;

This commit is contained in:
王奎兴
2026-04-21 09:22:54 +08:00
parent 2c3ed1149a
commit 31f2bbcc8a
6 changed files with 25 additions and 8 deletions
@@ -118,5 +118,9 @@ public class Warehouse extends BaseVOEntity{
@Excel(name = "是否作废: 1-否 2-是")
private Integer nullify;
@ApiModelProperty("是否启用: 1-否 2-是")
@Excel(name = "是否启用: 1-否 2-是")
private Integer isEnable;
}
}
@@ -119,8 +119,10 @@ public class WarehousePO extends BaseVOEntity{
@ApiModelProperty("是否作废: 1-否 2-是")
@Excel(name = "是否作废: 1-否 2-是")
private Integer nullify;
@ApiModelProperty("是否启用: 1-否 2-是")
@Excel(name = "是否启用: 1-否 2-是")
private Integer isEnable;
@ApiModelProperty("库区集合")
private List<StorageSectionPO> storageSectionList;
}
}
@@ -122,7 +122,9 @@ public class WarehouseDO extends BaseVOEntity{
@ApiModelProperty(name = "权限菜单ID")
private Long permissionMenuId;
@ApiModelProperty("是否启用: 1-否 2-是")
@Excel(name = "是否启用: 1-否 2-是")
private Integer isEnable;
@ApiModelProperty("仓库id 集合")
private List<Long> warehouseIds;
}
}
@@ -129,4 +129,7 @@ public class WarehouseDTO extends BaseVOEntity{
@ApiModelProperty("仓库id 集合")
private List<Long> warehouseIds;
}
@ApiModelProperty("是否启用: 1-否 2-是")
@Excel(name = "是否启用: 1-否 2-是")
private Integer isEnable;
}