wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java
@@ -18,6 +18,7 @@
    public static final String STATE_WAIT = "W";//待部署
    public static final String STATE_COMPLAINT = "C";//部署完成
    private String userId;
    private String describle;
    private String modelId;
    private String flowKey;
@@ -27,7 +28,8 @@
    private String flowType;
    private String processDefinitionKey;
    private String state;
    private String curFormId;
    private long undoCount;
    private Date createTime;
@@ -122,4 +124,28 @@
    public void setState(String state) {
        this.state = state;
    }
    public String getCurFormId() {
        return curFormId;
    }
    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;
    }
}