| | |
| | | |
| | | import java.util.Date; |
| | | import java.util.LinkedList; |
| | | import java.util.List; |
| | | |
| | | @TableName(schema = "db_doc",value = "tb_worksheet_main") |
| | | @Alias("WorksheetMain") |
| | |
| | | @ApiModelProperty("工单结束意见") |
| | | private String endReason; |
| | | |
| | | @ApiModelProperty("审批批次码") |
| | | private String approvingBatchCode; |
| | | |
| | | @ApiModelProperty("流程的下个处理人") |
| | | @TableField(exist = false) |
| | | private Long nextUser; |
| | |
| | | private String dealDesc; |
| | | |
| | | @TableField(exist = false) |
| | | private String createUser; |
| | | private DocUser createUser; |
| | | |
| | | @ApiModelProperty("待审批产品bom") |
| | | @TableField(exist = false) |
| | | private List<ProductBomApproving> approvingBomList; |
| | | |
| | | @TableField(exist = false) |
| | | private LinkedList<WorksheetLink> links; |
| | | |
| | | @TableField(exist = false) |
| | | private String approvingUser; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | this.endReason = endReason; |
| | | } |
| | | |
| | | public String getApprovingBatchCode() { |
| | | return approvingBatchCode; |
| | | } |
| | | |
| | | public void setApprovingBatchCode(String approvingBatchCode) { |
| | | this.approvingBatchCode = approvingBatchCode; |
| | | } |
| | | |
| | | public Long getNextUser() { |
| | | return nextUser; |
| | | } |
| | |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getCreateUser() { |
| | | public DocUser getCreateUser() { |
| | | return createUser; |
| | | } |
| | | |
| | | public void setCreateUser(String createUser) { |
| | | public void setCreateUser(DocUser createUser) { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | |
| | | public void setLinks(LinkedList<WorksheetLink> links) { |
| | | this.links = links; |
| | | } |
| | | |
| | | public List<ProductBomApproving> getApprovingBomList() { |
| | | return approvingBomList; |
| | | } |
| | | |
| | | public void setApprovingBomList(List<ProductBomApproving> approvingBomList) { |
| | | this.approvingBomList = approvingBomList; |
| | | } |
| | | |
| | | public String getApprovingUser() { |
| | | return approvingUser; |
| | | } |
| | | |
| | | public void setApprovingUser(String approvingUser) { |
| | | this.approvingUser = approvingUser; |
| | | } |
| | | } |