zyy
2025-07-21 f25b39e0d5fcae415a8824fc03d42fe681e96bf8
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
package com.nq.service;
 
import com.github.pagehelper.PageInfo;
import com.nq.common.ServerResponse;
import com.nq.pojo.FundsSecuritiesInfo;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * 配资证券信息
 * @author lr
 * @date 2020/07/24
 */
public interface IFundsSecuritiesInfoService {
 
    /**
     * 新增
     */
    int insert(FundsSecuritiesInfo model);
 
    /**
     * 更新
     */
    int update(FundsSecuritiesInfo model);
 
    /**
     * 配资券商机构-保存
     */
    ServerResponse save(FundsSecuritiesInfo model);
 
    /**
     * 配资券商机构-列表查询
     */
    ServerResponse<PageInfo> getList(int pageNum, int pageSize, String keyword, HttpServletRequest request);
 
    /**
     * 配资券商机构-查询详情
     */
    ServerResponse getDetail(int id);
 
    /**
     * [查询] 查询可用的证券信息
     * @author lr
     * @date 2020/07/24
     **/
    ServerResponse<PageInfo> getEnabledList();
 
}