ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.vci.server.workflow.objects;
import java.util.*;
 
import com.vci.common.annotaion.CustomAnnotaion;
import com.vci.common.objects.AbstractHistorizable;
    /**
     * FlowApproveContent Hibernate Object
     *
     */
     @CustomAnnotaion(CustomDescription = "用户自定义审批意见字典(库)")
    public class FlowApproveContent extends AbstractHistorizable implements java.io.Serializable {
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        @CustomAnnotaion(CustomDescription = "ID",InToString = false)
        private String id = "";
        @CustomAnnotaion(CustomDescription = "用户",InToString = true)
        private String userId = "";
        @CustomAnnotaion(CustomDescription = "审批意见",InToString = true)
        private String approveContent = "";
        @CustomAnnotaion(CustomDescription = "顺序",InToString = false)
        private Short seq = 0;
        @CustomAnnotaion(CustomDescription = "创建时间",InToString = false)
        private Date createTime = new Date();
        @CustomAnnotaion(CustomDescription = "创建者",InToString = false)
        private String createUser = "";
        @CustomAnnotaion(CustomDescription = "创建者拥有角色",InToString = false)
        private String createRole = "";
        @CustomAnnotaion(CustomDescription = "创建者所在组织",InToString = false)
        private String createOrg = "";
        @CustomAnnotaion(CustomDescription = "修改时间",InToString = false)
        private Date modifyTime = new Date();
        @CustomAnnotaion(CustomDescription = "修改者",InToString = false)
        private String modifyUser = "";
        @CustomAnnotaion(CustomDescription = "修改者拥有角色",InToString = false)
        private String modifyRole = "";
        @CustomAnnotaion(CustomDescription = "修改者所在组织",InToString = false)
        private String modifyOrg = "";
        @CustomAnnotaion(CustomDescription = "授权者",InToString = false)
        private String licensors = "";
        public FlowApproveContent(){
        }
        public String getId(){
            return this.id;
        }
        public void setId(String val){
            this.id = val;
        }
        public String getUserId(){
            return this.userId;
        }
        public void setUserId(String val){
            this.userId = val;
        }
        public String getApproveContent(){
            return this.approveContent;
        }
        public void setApproveContent(String val){
            this.approveContent = val;
        }
        public Short getSeq(){
            return this.seq;
        }
        public void setSeq(Short val){
            this.seq = val;
        }
        public Date getCreateTime(){
            return this.createTime;
        }
        public void setCreateTime(Date val){
            this.createTime = val;
        }
        public String getCreateUser(){
            return this.createUser;
        }
        public void setCreateUser(String val){
            this.createUser = val;
        }
        public String getCreateRole(){
            return this.createRole;
        }
        public void setCreateRole(String val){
            this.createRole = val;
        }
        public String getCreateOrg(){
            return this.createOrg;
        }
        public void setCreateOrg(String val){
            this.createOrg = val;
        }
        public Date getModifyTime(){
            return this.modifyTime;
        }
        public void setModifyTime(Date val){
            this.modifyTime = val;
        }
        public String getModifyUser(){
            return this.modifyUser;
        }
        public void setModifyUser(String val){
            this.modifyUser = val;
        }
        public String getModifyRole(){
            return this.modifyRole;
        }
        public void setModifyRole(String val){
            this.modifyRole = val;
        }
        public String getModifyOrg(){
            return this.modifyOrg;
        }
        public void setModifyOrg(String val){
            this.modifyOrg = val;
        }
        public String getLicensors(){
            return this.licensors;
        }
        public void setLicensors(String val){
            this.licensors = val;
        }
    }