peternameyakj
2025-04-29 acf1c75a32aa05f34d9d60b6ae3f3e052b532e9f
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
package project.monitor.pledgegalaxy;
 
import java.util.Date;
import java.util.List;
 
import kernel.web.Page;
 
/**
 * 质押2.0收益记录service
 *
 */
public interface PledgeGalaxyProfitService {
 
    /**
     * 收益记录列表
     */
    public Page pagedQuery(int pageNo, int pageSize, String partyId);
    
    /**
     * 收益记录列表-当日收益
     */
    public List<PledgeGalaxyProfit> queryTodayProfitList(String partyId, int status);
    
    /**
     * 领取
     */
    public void updateReceive(String id);
    
    /**
     * 领取收益 及时到账
     */
    public void updateReceiveToWallet(PledgeGalaxyProfit profit);
    
    /**
     * 根据状态获取记录列表
     */
    public List<PledgeGalaxyProfit> findByStatus(int status);
    
    /**
     * 根据创建日期和关联订单号获取记录列表
     */
    public List<PledgeGalaxyProfit> findByRelationOrderNo(String relationOrderNo, Date time);
    
    /**
     * 更新质押订单
     */
    public void update(PledgeGalaxyProfit profit);
    
    /**
     * 根据ID获取质押订单
     */
    public PledgeGalaxyProfit get(String id);
}