1
zj
2026-01-14 af7f754c7eeb82a7ec7570d1396ff91848d83ca7
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
package com.nq.service;
 
import com.github.pagehelper.PageInfo;
import com.nq.common.ServerResponse;
import com.nq.pojo.FundsApply;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * 配资申请
 * @author lr
 * @date 2020/07/24
 */
public interface IFundsApplyService {
 
    /**
     * 新增
     */
    ServerResponse insert(FundsApply model, HttpServletRequest request) throws Exception;
 
    /**
     * 更新
     */
    int update(FundsApply model);
 
    /**
     * 配资申请-保存
     */
    ServerResponse save(FundsApply model);
 
    /**
     * 配资申请-列表查询
     */
    ServerResponse<PageInfo> getList(int pageNum, int pageSize, String keyword, Integer status, HttpServletRequest request);
 
    /**
     * 配资申请-查询详情
     */
    ServerResponse getDetail(int id);
 
    /**
     * 配资申请-用户配资列表
     */
    ServerResponse<PageInfo> getUserApplyList(int pageNum, int pageSize, int userId, HttpServletRequest request);
 
    /**
     * 配资申请-审核
     */
    ServerResponse audit(FundsApply model, HttpServletRequest request) throws Exception ;
 
    /**
     * 配资申请-用户操盘中子账户
     */
    ServerResponse<PageInfo> getUserEnabledSubaccount(HttpServletRequest request);
 
}