xiaoyong931011
2021-01-08 0d03d3fe08f4ca6865adf4147dbbc4830e231837
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package com.xcong.excoin.modules.trademanage.controller;
 
import com.xcong.excoin.common.entity.FebsConstant;
import com.xcong.excoin.common.utils.FebsUtil;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @author wzy
 * @date 2020-06-10
 **/
@Controller("tradeManageView")
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/trademanage")
public class ViewController {
    
    /**
     * 历史委托明细---17773261001
     * @return
     */
    @GetMapping("historyOrderInfoAloneOne")
    @RequiresPermissions("historyOrderInfoAloneOne:view")
    public String historyOrderInfoAloneOne() {
        return FebsUtil.view("modules/trademanage/historyOrderInfoAloneOne");
    }
    /**
     * 历史委托明细---17773261002
     * @return
     */
    @GetMapping("historyOrderInfoAloneTwo")
    @RequiresPermissions("historyOrderInfoAloneTwo:view")
    public String historyOrderInfoAloneTwo() {
        return FebsUtil.view("modules/trademanage/historyOrderInfoAloneTwo");
    }
    /**
     * 历史委托明细---17773261003
     * @return
     */
    @GetMapping("historyOrderInfoAloneTee")
    @RequiresPermissions("historyOrderInfoAloneTee:view")
    public String historyOrderInfoAloneTee() {
        return FebsUtil.view("modules/trademanage/historyOrderInfoAloneTee");
    }
    /**
     * 历史委托明细---17773260001
     * @return
     */
    @GetMapping("historyOrderInfoAloneAll")
    @RequiresPermissions("historyOrderInfoAloneAll:view")
    public String historyOrderInfoAloneAll() {
        return FebsUtil.view("modules/trademanage/historyOrderInfoAloneAll");
    }
    
    /**
     * 账户信息---17773261001
     * @return
     */
    @GetMapping("memberAccountInfoAloneOne")
    @RequiresPermissions("memberAccountInfoAloneOne:view")
    public String memberAccountInfoAloneOne() {
        return FebsUtil.view("modules/trademanage/memberAccountInfoAloneOne");
    }
    /**
     * 账户信息---17773261002
     * @return
     */
    @GetMapping("memberAccountInfoAloneTwo")
    @RequiresPermissions("memberAccountInfoAloneTwo:view")
    public String memberAccountInfoAloneTwo() {
        return FebsUtil.view("modules/trademanage/memberAccountInfoAloneTwo");
    }
    /**
     * 账户信息---17773261003
     * @return
     */
    @GetMapping("memberAccountInfoAloneTee")
    @RequiresPermissions("memberAccountInfoAloneTee:view")
    public String memberAccountInfoAloneTee() {
        return FebsUtil.view("modules/trademanage/memberAccountInfoAloneTee");
    }
    /**
     * 账户信息---17773260001
     * @return
     */
    @GetMapping("memberAccountInfoAloneAll")
    @RequiresPermissions("memberAccountInfoAloneAll:view")
    public String memberAccountInfoAloneAll() {
        return FebsUtil.view("modules/trademanage/memberAccountInfoAloneAll");
    }
    
    /**
     * 返佣明细---17773261001
     * @return
     */
    @GetMapping("memberAgentReturnInfoAloneOne")
    @RequiresPermissions("memberAgentReturnInfoAloneOne:view")
    public String agentReturnInfoAloneOne() {
        return FebsUtil.view("modules/trademanage/memberAgentReturnInfoAloneOne");
    }
    /**
     * 返佣明细---17773261002
     * @return
     */
    @GetMapping("memberAgentReturnInfoAloneTwo")
    @RequiresPermissions("memberAgentReturnInfoAloneTwo:view")
    public String memberAgentReturnInfoAloneTwo() {
        return FebsUtil.view("modules/trademanage/memberAgentReturnInfoAloneTwo");
    }
    /**
     * 返佣明细---17773261003
     * @return
     */
    @GetMapping("memberAgentReturnInfoAloneTee")
    @RequiresPermissions("memberAgentReturnInfoAloneTee:view")
    public String memberAgentReturnInfoAloneTee() {
        return FebsUtil.view("modules/trademanage/memberAgentReturnInfoAloneTee");
    }
    /**
     * 返佣明细---17773260001
     * @return
     */
    @GetMapping("memberAgentReturnInfoAloneAll")
    @RequiresPermissions("memberAgentReturnInfoAloneAll:view")
    public String memberAgentReturnInfoAloneAll() {
        return FebsUtil.view("modules/trademanage/memberAgentReturnInfoAloneAll");
    }
    /**
     * 当前持仓---17773261001
     */
    @GetMapping("contractHoldOrderAloneOne")
    @RequiresPermissions("contractHoldOrderAloneOne:view")
    public String contractHoldOrderAloneOne() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAloneOne");
    }
    /**
     * 当前持仓---17773261002
     */
    @GetMapping("contractHoldOrderAloneTwo")
    @RequiresPermissions("contractHoldOrderAloneTwo:view")
    public String contractHoldOrderAloneTwo() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAloneTwo");
    }
    /**
     * 当前持仓---17773261003
     */
    @GetMapping("contractHoldOrderAloneThree")
    @RequiresPermissions("contractHoldOrderAloneThree:view")
    public String contractHoldOrderAloneThree() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAloneThree");
    }
    /**
     * 当前持仓---17773260001
     */
    @GetMapping("contractHoldOrderAloneOneAll")
    @RequiresPermissions("contractHoldOrderAloneOneAll:view")
    public String contractHoldOrderAloneOneAll() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAloneOneAll");
    }
 
    /**
     * 当前持仓
     */
    @GetMapping("contractHoldOrder")
    @RequiresPermissions("contractHoldOrder:view")
    public String contractHoldOrder() {
        return FebsUtil.view("modules/trademanage/contractHoldOrder");
    }
    
    /**
     * 当前持仓---alone
     */
    @GetMapping("contractHoldOrderAlone")
    @RequiresPermissions("contractHoldOrderAlone:view")
    public String contractHoldOrderAlone() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAlone");
    }
    
    /**
     * 当前持仓---Test
     */
    @GetMapping("contractHoldOrderAloneTest")
    @RequiresPermissions("contractHoldOrderAloneTest:view")
    public String contractHoldOrderAloneTest() {
        return FebsUtil.view("modules/trademanage/contractHoldOrderAloneTest");
    }
    
    /**
     * 账户信息
     * @return
     */
    @GetMapping("accountInfo")
    @RequiresPermissions("accountInfo:view")
    public String accountInfo() {
        return FebsUtil.view("modules/trademanage/accountInfo");
    }
    /**
     * 账户信息---alone
     * @return
     */
    @GetMapping("accountInfoAlone")
    @RequiresPermissions("accountInfoAlone:view")
    public String accountInfoAlone() {
        return FebsUtil.view("modules/trademanage/accountInfoAlone");
    }
    /**
     * 账户信息---Test
     * @return
     */
    @GetMapping("accountInfoAloneTest")
    @RequiresPermissions("accountInfoAloneTest:view")
    public String accountInfoAloneTest() {
        return FebsUtil.view("modules/trademanage/accountInfoAloneTest");
    }
    
    /**
     * 返佣明细
     * @return
     */
    @GetMapping("agentReturnInfo")
    @RequiresPermissions("agentReturnInfo:view")
    public String agentReturnInfo() {
        return FebsUtil.view("modules/trademanage/agentReturnInfo");
    }
    
    /**
     * 返佣总明细
     * @return
     */
    @GetMapping("agentReturnInfos")
    @RequiresPermissions("agentReturnInfos:view")
    public String agentReturnInfos() {
        return FebsUtil.view("modules/trademanage/agentReturnInfos");
    }
    
    /**
     * 历史委托明细
     * @return
     */
    @GetMapping("historyOrder")
    @RequiresPermissions("historyOrder:view")
    public String historyOrder() {
        return FebsUtil.view("modules/trademanage/historyOrder");
    }
    
    /**
     * 历史委托明细---alone
     * @return
     */
    @GetMapping("historyOrderAlone")
    @RequiresPermissions("historyOrderAlone:view")
    public String historyOrderAlone() {
        return FebsUtil.view("modules/trademanage/historyOrderAlone");
    }
    
    /**
     * 历史委托明细---Test
     * @return
     */
    @GetMapping("historyOrderAloneTest")
    @RequiresPermissions("historyOrderAloneTest:view")
    public String historyOrderAloneTest() {
        return FebsUtil.view("modules/trademanage/historyOrderAloneTest");
    }
    
    /**
     * 全部历史委托明细
     * @return
     */
    @GetMapping("historyOrderAll")
    @RequiresPermissions("historyOrderAll:view")
    public String historyOrderAll() {
        return FebsUtil.view("modules/trademanage/historyOrderAll");
    }
    
    /**
     * 返佣总明细
     * @return
     */
    @GetMapping("agentReturnInfosAlone")
    @RequiresPermissions("agentReturnInfosAlone:view")
    public String agentReturnInfosAlone() {
        return FebsUtil.view("modules/trademanage/agentReturnInfosAlone");
    }
    /**
     * 返佣总明细--Test
     * @return
     */
    @GetMapping("agentReturnInfosAloneTest")
    @RequiresPermissions("agentReturnInfosAloneTest:view")
    public String agentReturnInfosAloneTest() {
        return FebsUtil.view("modules/trademanage/agentReturnInfosAloneTest");
    }
    
}