File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
src/work/server/handlers/models Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -207,10 +207,14 @@ type Comments struct {
207
207
}
208
208
209
209
type ApprovalNode struct {
210
- NodeStatus int `xml:"NodeStatus"`
211
- NodeAttr int `xml:"NodeAttr"`
212
- NodeType int `xml:"NodeType"`
213
- ApprovalItems []ApprovalItem `xml:"Items"`
210
+ NodeStatus int `xml:"NodeStatus"`
211
+ NodeAttr int `xml:"NodeAttr"`
212
+ NodeType int `xml:"NodeType"`
213
+ ApprovalItems []ApprovalItems `xml:"Items"`
214
+ }
215
+
216
+ type ApprovalItems struct {
217
+ ApprovalItem []ApprovalItem `xml:"ApprovalNode"`
214
218
}
215
219
216
220
type ApprovalItem struct {
@@ -222,6 +226,10 @@ type ApprovalItem struct {
222
226
ItemOpTime int64 `xml:"ItemOpTime"`
223
227
}
224
228
229
+ type NotifyNodes struct {
230
+ NotifyNode NotifyNode `xml:"NotifyNode"`
231
+ }
232
+
225
233
type NotifyNode struct {
226
234
ItemName string `xml:"ItemName"`
227
235
ItemUserId string `xml:"ItemUserId"`
You can’t perform that action at this time.
0 commit comments