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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package com.vci.server.bof.server;
 
import javax.xml.rpc.holders.LongHolder;
 
import com.vci.corba.omd.data.BusinessObject;
import com.vci.corba.omd.data.LinkObject;
import com.vci.corba.omd.lcm.TransitionVO;
import com.vci.corba.framework.data.UserInfo;
 
/**
 * 服务端前后置层参数集
 * @author lmh
 *
 */
public class ServiceParams {
    
    private BusinessObject bo = null;//增删改
    
    private LinkObject lo = null;
    
    private boolean isRevision = false;//增
    
    private boolean isNewVersion = false;//增
 
    private BusinessObject[] bos = null;//批量新增
    
    private BusinessObject[] createBos = null;//批量新增
    
    private BusinessObject[] updateBos = null;//批量修改
    
    private BusinessObject[] deleteBos = null;//批量删除
    
    private LinkObject[] los = null;
    
    private LinkObject[] createLos = null;
    
    private LinkObject[] updateLos = null;
    
    private LinkObject[] deleteLos = null;
    
    private LongHolder ts = null;
    
    private String btmName = null;//btmName
    
    private String releaseStatus = null;
    
    private String[] releaseStatuss = null;
    
    private String[] oids = null;//oids
    
    private int type = 0;//type
    
    private TransitionVO vo = null;
    
    private TransitionVO[] vos = null;
    
    private UserInfo userInfo = null;
    
    private UserInfo[] userList = null;
    
    public BusinessObject[] getCreateBos() {
        return createBos;
    }
 
    public void setCreateBos(BusinessObject[] createBos) {
        this.createBos = createBos;
    }
 
    public BusinessObject[] getUpdateBos() {
        return updateBos;
    }
 
    public void setUpdateBos(BusinessObject[] updateBos) {
        this.updateBos = updateBos;
    }
 
    public BusinessObject[] getDeleteBos() {
        return deleteBos;
    }
 
    public void setDeleteBos(BusinessObject[] deleteBos) {
        this.deleteBos = deleteBos;
    }
 
    public LinkObject[] getCreateLos() {
        return createLos;
    }
 
    public void setCreateLos(LinkObject[] createLos) {
        this.createLos = createLos;
    }
 
    public LinkObject[] getUpdateLos() {
        return updateLos;
    }
 
    public void setUpdateLos(LinkObject[] updateLos) {
        this.updateLos = updateLos;
    }
 
    public LinkObject[] getDeleteLos() {
        return deleteLos;
    }
 
    public void setDeleteLos(LinkObject[] deleteLos) {
        this.deleteLos = deleteLos;
    }
 
    public BusinessObject getBo() {
        return bo;
    }
 
    public void setBo(BusinessObject bo) {
        this.bo = bo;
    }
 
    public LinkObject getLo() {
        return lo;
    }
 
    public void setLo(LinkObject lo) {
        this.lo = lo;
    }
 
    public boolean isRevision() {
        return isRevision;
    }
 
    public void setRevision(boolean isRevision) {
        this.isRevision = isRevision;
    }
 
    public boolean isNewVersion() {
        return isNewVersion;
    }
 
    public void setNewVersion(boolean isNewVersion) {
        this.isNewVersion = isNewVersion;
    }
 
    public BusinessObject[] getBos() {
        return bos;
    }
 
    public void setBos(BusinessObject[] bos) {
        this.bos = bos;
    }
 
    public LinkObject[] getLos() {
        return los;
    }
 
    public void setLos(LinkObject[] los) {
        this.los = los;
    }
 
    public LongHolder getTs() {
        return ts;
    }
 
    public void setTs(LongHolder ts) {
        this.ts = ts;
    }
 
    public String getBtmName() {
        return btmName;
    }
 
    public void setBtmName(String btmName) {
        this.btmName = btmName;
    }
 
    public String getReleaseStatus() {
        return releaseStatus;
    }
 
    public void setReleaseStatus(String releaseStatus) {
        this.releaseStatus = releaseStatus;
    }
 
    public String[] getReleaseStatuss() {
        return releaseStatuss;
    }
 
    public void setReleaseStatuss(String[] releaseStatuss) {
        this.releaseStatuss = releaseStatuss;
    }
 
    public String[] getOids() {
        return oids;
    }
 
    public void setOids(String[] oids) {
        this.oids = oids;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public TransitionVO getVo() {
        return vo;
    }
 
    public void setVo(TransitionVO vo) {
        this.vo = vo;
    }
 
    public TransitionVO[] getVos() {
        return vos;
    }
 
    public void setVos(TransitionVO[] vos) {
        this.vos = vos;
    }
 
    public UserInfo getUserInfo() {
        return userInfo;
    }
 
    public void setUserInfo(UserInfo userInfo) {
        this.userInfo = userInfo;
    }
 
    public UserInfo[] getUserList() {
        return userList;
    }
 
    public void setUserList(UserInfo[] userList) {
        this.userList = userList;
    }
    
}