1
zj
2025-06-25 a0361e762fc672d844ef15e18db5971893cce2bf
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
package project.monitor;
 
import java.util.List;
 
import kernel.web.Page;
import project.monitor.pledgegalaxy.PledgeGalaxyProfit;
 
public interface AdminPledgeGalaxyProfitService {
 
    public Page pagedQuery(int pageNo, int pageSize, String order_no, String relation_order_no, String start_time, String end_time, String name, String rolename, Integer status, String loginPartyId);
 
    /**
     * 收益记录审核
     */
    public void saveReceiveApply(String id, String msg, boolean isPassed);
    
    /**
     * 根据状态获取记录列表
     */
    public List<PledgeGalaxyProfit> findByRelationOrderNo(String relationOrderNo);
    
    /**
     * 删除质押收益记录
     */
    public void delete(PledgeGalaxyProfit profit);
    
    /**
     * 人工补静态及助力收益
     */
    public void saveProfit(String time);
    
    /**
     * 人工补团队收益
     */
    public void saveTeamProfit(String time);
    
}