1
zj
2025-08-18 8b5ed9e9ff4400ad5638bab870e52af4f90d101a
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
package com.nq.service;
 
import com.nq.common.ServerResponse;
import com.nq.pojo.FundsSetting;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * funds_setting
 * @author lr
 * @date 2020/07/23
 */
public interface IFundsSettingService {
 
    /**
     * 新增
     */
    int insert(FundsSetting fundsSetting);
 
    /**
     * 更新
     */
    int update(FundsSetting fundsSetting);
 
    /**
     * 根据主键 id 查询
     */
    FundsSetting load(int id);
 
    /**
     * 保存设置
     */
    ServerResponse save(FundsSetting fundsSetting, HttpServletRequest paramHttpServletRequest);
 
    /*查询第一条数据*/
    FundsSetting getFundsSetting();
 
}