| | |
| | | /**工单文件路径*/ |
| | | private String file; |
| | | /**工单创建人id*/ |
| | | private Integer createUserId; |
| | | private Long createUserId; |
| | | /**工单开始时间*/ |
| | | private Date beginTime; |
| | | /**工单结束时间*/ |
| | |
| | | private Integer level; |
| | | /** |
| | | * 工单状态: |
| | | * 0:员工处理中 |
| | | * 0:员工处理中(已驳回) |
| | | * 1:经理处理中 |
| | | * 2:总经理处理中 |
| | | * 5:归档 |
| | |
| | | |
| | | /**流程的下个处理人*/ |
| | | @TableField(exist = false) |
| | | private Integer nextUser; |
| | | private Long nextUser; |
| | | |
| | | /**提交人的意见描述*/ |
| | | @TableField(exist = false) |
| | |
| | | this.file = file; |
| | | } |
| | | |
| | | public Integer getCreateUserId() { |
| | | public Long getCreateUserId() { |
| | | return createUserId; |
| | | } |
| | | |
| | | public void setCreateUserId(Integer createUserId) { |
| | | public void setCreateUserId(Long createUserId) { |
| | | this.createUserId = createUserId; |
| | | } |
| | | |
| | |
| | | this.endReason = endReason; |
| | | } |
| | | |
| | | public Integer getNextUser() { |
| | | public Long getNextUser() { |
| | | return nextUser; |
| | | } |
| | | |
| | | public void setNextUser(Integer nextUser) { |
| | | public void setNextUser(Long nextUser) { |
| | | this.nextUser = nextUser; |
| | | } |
| | | |