1
zj
8 days ago 7d008bf58373926bbdcf67fa7bcf92510f427fb6
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
package com.nq.service;
 
import com.github.pagehelper.PageInfo;
import com.nq.common.ServerResponse;
import com.nq.pojo.FundsLever;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * funds_lever
 * @author lr
 * @date 2020/07/23
 */
public interface IFundsLeverService {
 
    /**
     * 新增
     */
    int insert(FundsLever fundsLever);
 
    /**
     * 删除
     */
    int delete(int id);
 
    /**
     * 更新
     */
    int update(FundsLever fundsLever);
 
    /*查询配资杠杆列表*/
    ServerResponse<PageInfo> getFundsLeverList(int pageNum, int pageSize, HttpServletRequest request);
 
    /**
     * 配资杠杆列表保存
     */
    ServerResponse saveFundsLever(FundsLever fundsLever);
 
    /**
     * [查询] 查询配资类型杠杆
     * @author lr
     * @date 2020/07/23
     **/
    ServerResponse getFundsTypeList(Integer cycleType);
 
    /**
     * 配资杠杆-查询杠杆费率
     */
    ServerResponse getLeverRateInfo(Integer cycleType, Integer lever);
 
}