java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
@@ -14,13 +14,16 @@
 * add by wuxw 2019/4/24
 **/
public class AllocationStorehouseDto extends PageDto implements Serializable {
    public static final String STATE_APPLY = "1200";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败
    public static final String STATE_AUDIT = "1201";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败
    public static final String STATE_SUCCESS = "1202";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败
    public static final String STATE_FAIL = "1203";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败
    public static final String STATE_APPLY = "1200";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    public static final String STATE_AUDIT = "1201";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    public static final String STATE_SUCCESS = "1202";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    public static final String STATE_FAIL = "1203";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    public static final String STATE_REVIEWED = "1204";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    public static final String STATE_RETURN = "1205";//状态,1200 调拨申请 1201 调拨审核 1202 调拨完成 1203 调拨失败 1204 调拨已审核 1205 已退还
    private String asId;
    private String[] asIds;
    private String storeId;
    private String bId;
    private String resId;
    private String shIdz;
    private String resName;
@@ -53,6 +56,8 @@
    private String staffId;
    private String staffName;
    private String staffTel;
    private String applyType;
    private String applyTypeName;
    public String getAsId() {
        return asId;
@@ -318,4 +323,29 @@
    public void setRssId(String rssId) {
        this.rssId = rssId;
    }
    public String getApplyType() {
        return applyType;
    }
    public void setApplyType(String applyType) {
        this.applyType = applyType;
    }
    public String getApplyTypeName() {
        return applyTypeName;
    }
    public void setApplyTypeName(String applyTypeName) {
        this.applyTypeName = applyTypeName;
    }
    public String getbId() {
        return bId;
    }
    public void setbId(String bId) {
        this.bId = bId;
    }
}