wuxw
2022-11-22 8a91e6d98e6842a067faa3165bb8a456336d1085
java110-bean/src/main/java/com/java110/dto/storehouse/StorehouseDto.java
@@ -15,8 +15,8 @@
 **/
public class StorehouseDto extends PageDto implements Serializable {
    public static final String SH_TYPE_GROUP = "2806";
    public static final String SH_TYPE_COMMUNITY = "2807";
    public static final String SH_TYPE_GROUP = "2806"; //集团仓库
    public static final String SH_TYPE_COMMUNITY = "2807"; //项目仓库
    private String shDesc;
    private String shType;
@@ -25,12 +25,11 @@
    private String shId;
    private String shName;
    private String storeId;
    private String isShow;
    private Date createTime;
    private String statusCd = "0";
    public String getShDesc() {
        return shDesc;
@@ -80,7 +79,6 @@
        this.storeId = storeId;
    }
    public Date getCreateTime() {
        return createTime;
    }
@@ -104,4 +102,12 @@
    public void setShObjIds(String[] shObjIds) {
        this.shObjIds = shObjIds;
    }
    public String getIsShow() {
        return isShow;
    }
    public void setIsShow(String isShow) {
        this.isShow = isShow;
    }
}