| | |
| | | public static final String STATE_WAIT = "W";//待部署 |
| | | public static final String STATE_COMPLAINT = "C";//部署完成 |
| | | |
| | | public static final String FLOW_TYPE_ITEM_RELEASE="2002";//物品放行 |
| | | public static final String FLOW_TYPE_PURCHASE_APPLY="5005";//采购 |
| | | public static final String FLOW_TYPE_RESOURCE_OUT="6006";//领用 |
| | | public static final String FLOW_TYPE_ALLOCATION="7007";//调拨 |
| | | public static final String FLOW_TYPE_VISIT="3003";// 访客审核 |
| | | public static final String FLOW_TYPE_PUBLIC="1001";//物品放行 |
| | | |
| | | public static final String FLOW_TYPE_OWNER_SETTLED="4004";// 业主入驻房屋流程 |
| | | |
| | | private String userId; |
| | | private String describle; |
| | | private String modelId; |
| | | private String flowKey; |
| | |
| | | private String processDefinitionKey; |
| | | private String state; |
| | | private String curFormId; |
| | | private long undoCount; |
| | | |
| | | private Date createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | |
| | | private String[] flowIds; |
| | | |
| | | |
| | | public String getDescrible() { |
| | |
| | | public void setCurFormId(String curFormId) { |
| | | this.curFormId = curFormId; |
| | | } |
| | | |
| | | public long getUndoCount() { |
| | | return undoCount; |
| | | } |
| | | |
| | | public void setUndoCount(long undoCount) { |
| | | this.undoCount = undoCount; |
| | | } |
| | | |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(String userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String[] getFlowIds() { |
| | | return flowIds; |
| | | } |
| | | |
| | | public void setFlowIds(String[] flowIds) { |
| | | this.flowIds = flowIds; |
| | | } |
| | | } |