java110
2021-09-03 cddcf22a61489ee9c2dfee169d817ccd66f95430
java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
@@ -17,6 +17,7 @@
    private String applyId;
    private String[] applyIds;
    private String bId;
    private String startUserId;
    private String startUserName;
    private String applyCount;
@@ -34,10 +35,18 @@
    private String staffTel;
    private String startTime;
    private String endTime;
    private String communityId;
    private Date createTime;
    private String statusCd = "0";
    //状态标识
    private String noticeState;
    //调拨返还状态标识
    private String applyType;
    private String applyTypeName;
    public String getApplyId() {
        return applyId;
@@ -94,7 +103,6 @@
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
    public Date getCreateTime() {
        return createTime;
@@ -207,4 +215,44 @@
    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;
    }
}