lxw
2023-08-15 160e150009b51a39fa95d9462c3798ba28d51a09
src/main/java/com/whyc/pojo/WorkflowMain.java
@@ -75,8 +75,9 @@
    private Integer auto;
    /**
     * 工单流类型
     *
     * @see com.whyc.constant.WorkflowEnum
     * */
     */
    private Integer type;
    @TableField(exist = false)
@@ -84,7 +85,10 @@
    @TableField(exist = false)
    private String createUserName;
    public WorkflowMain(Integer id, Integer status,String endReason,Date endTime) {
    @TableField(exist = false)
    private WorkflowLink workflowLink;
    public WorkflowMain(Integer id, Integer status, String endReason, Date endTime) {
        this.id = id;
        this.status = status;
        this.endReason = endReason;
@@ -278,4 +282,12 @@
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
    public WorkflowLink getWorkflowLink() {
        return workflowLink;
    }
    public void setWorkflowLink(WorkflowLink workflowLink) {
        this.workflowLink = workflowLink;
    }
}