puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
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
package com.dsh.course.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.guns.modular.system.model.TSystemPrice;
import com.dsh.guns.modular.system.model.TSystemPriceService;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 服务价格规则 Mapper 接口
 * </p>
 *
 * @author 吕雪
 * @since 2020-08-29
 */
public interface TSystemPriceMapper extends BaseMapper<TSystemPrice> {
 
    /**
     * 查询专车价格设置
     */
    List<Map<String,Object>> getSpecialPriceList(@Param("page") Page<Map<String, Object>> page,
                                                 @Param("companyId") Integer companyId,
                                                 @Param("name") String name,
                                                 @Param("state") Integer state,
                                                 @Param("language") Integer language);
 
    void saveService(@Param("type") Integer type, @Param("openCityId") Integer openCityId,@Param("type1") Integer type1, @Param("json2") String json2, @Param("code") String code, @Param("userId") Integer userId,@Param("remark") String remark,@Param("c") Integer c);
 
    List<Map<String, Object>> getServicePriceList(@Param("page") Page<Map<String, Object>> page ,@Param("sTime") String sTime, @Param("eTime") String eTime, @Param("company") String company, @Param("phone") String phone, @Param("account") String account, @Param("state") Integer state);
 
 
    List<TSystemPriceService> getService(@Param("tSystemPriceId") String tSystemPriceId);
 
 
    void updateCheck(@Param("id") String id, @Param("check") Integer check);
 
 
    void saveMotoService(@Param("openCityId") Integer openCityId, @Param("serverCarModelId") Integer serverCarModelId,
                         @Param("type") Integer type, @Param("json1") String json1, @Param("i") Integer i,
                         @Param("code")String code,@Param("userId")Integer userId,@Param("c")Integer c);
 
    List<Map<String, Object>> getServicePriceList1(@Param("page") Page<Map<String, Object>> page ,@Param("sTime") String sTime, @Param("eTime") String eTime, @Param("company") String company, @Param("phone") String phone, @Param("account") String account, @Param("state") Integer state, @Param("cid") List<Integer> cid);
}