wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
@@ -15,8 +15,18 @@
 **/
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;
    private String startUserId;
    private String startUserName;
    private String applyCount;
@@ -34,10 +44,21 @@
    private String staffTel;
    private String startTime;
    private String endTime;
    private String communityId;
    private String nextUserId;
    private Date createTime;
    private String statusCd = "0";
    //状态标识
    private String noticeState;
    //调拨返还状态标识
    private String applyType;
    private String applyTypeName;
    //调拨源仓库
    private String shId;
    public String getApplyId() {
        return applyId;
@@ -94,7 +115,6 @@
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
    public Date getCreateTime() {
        return createTime;
@@ -207,4 +227,60 @@
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
    public String getCommunityId() {
        return communityId;
    }
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
    public String getNoticeState() {
        return noticeState;
    }
    public void setNoticeState(String noticeState) {
        this.noticeState = noticeState;
    }
    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;
    }
    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;
    }
}