xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
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
package com.nuvole.four.service;
 
import com.nuvole.four.domain.SpecialFeeRate;
import com.nuvole.four.domain.dto.SpecialFeeRateDto;
import com.nuvole.four.domain.query.SpecialFeeRateQuery;
 
import java.util.List;
 
/**
 * @Description 行业管理-特殊行业费率Service
 * @Author dqh
 * @Date 2024-04-12 19:57:28
 */
public interface SpecialFeeRateService{
 
    int addSelective(SpecialFeeRateDto entity);
    int editSelective(SpecialFeeRate entity);
    SpecialFeeRate get(Long id);
    int del(Long id);
    /**
     * 查询列表
     *
     * @param query
     * @return 查询结果
     */
    List<SpecialFeeRate> getList(SpecialFeeRateQuery query);
 
    /**
     * 方法描述:特殊费率配置查询
     *
     * @date  2024-04-13 13:19
     **/
    SpecialFeeRateDto getConfig(Long industryId,Long channelId);
 
}