wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
@@ -15,6 +15,15 @@
 **/
public class AllocationStorehouseApplyDto extends PageDto implements Serializable {
    /**
     * 10000   调拨
     * 20000   退还
     * 30000   紧急调拨
     */
    public static final String STORE_TYPE_ALLOCATION = "10000"; //调拨
    public static final String STORE_TYPE_RETURN = "20000";
    public static final String STORE_TYPE_URGENT_ALLOCATION = "30000"; //紧急调拨
    private String applyId;
    private String[] applyIds;
    private String bId;
@@ -36,6 +45,7 @@
    private String startTime;
    private String endTime;
    private String communityId;
    private String nextUserId;
    private Date createTime;
@@ -47,6 +57,8 @@
    //调拨返还状态标识
    private String applyType;
    private String applyTypeName;
    //调拨源仓库
    private String shId;
    public String getApplyId() {
        return applyId;
@@ -255,4 +267,20 @@
    public void setbId(String bId) {
        this.bId = bId;
    }
    public String getShId() {
        return shId;
    }
    public void setShId(String shId) {
        this.shId = shId;
    }
    public String getNextUserId() {
        return nextUserId;
    }
    public void setNextUserId(String nextUserId) {
        this.nextUserId = nextUserId;
    }
}