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);
|
}
|