1098226878
2021-08-26 a0705c0be326a28922a30daec022e120f754fff7
java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
@@ -17,11 +17,13 @@
    private String applyId;
    private String[] applyIds;
    private String bId;
    private String startUserId;
    private String startUserName;
    private String applyCount;
    private String remark;
    private String state;
    private String stateName;
    private String storeId;
    private String currentUserId;
    private String processInstanceId;
@@ -31,12 +33,20 @@
    private String staffId;
    private String staffName;
    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;
@@ -93,7 +103,6 @@
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
    public Date getCreateTime() {
        return createTime;
@@ -182,4 +191,68 @@
    public void setApplyIds(String[] applyIds) {
        this.applyIds = applyIds;
    }
    public String getStateName() {
        return stateName;
    }
    public void setStateName(String stateName) {
        this.stateName = stateName;
    }
    public String getStartTime() {
        return startTime;
    }
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
    public String getEndTime() {
        return endTime;
    }
    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;
    }
}