package com.dsh.guns.modular.system.service;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
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>
|
* 服务价格规则 服务类
|
* </p>
|
*
|
* @author 吕雪
|
* @since 2020-08-29
|
*/
|
public interface ITSystemPriceService extends IService<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);
|
|
void saveService(Integer type, Integer openCityId, Integer type1,String json2,String code,Integer userId,String remark);
|
|
List<Map<String, Object>> getServicePriceList(Page<Map<String, Object>> page ,String time, String company, String phone, String account, Integer state);
|
|
|
List<TSystemPriceService> getService(String tSystemPriceId);
|
|
|
void updateCheck(String id, Integer check);
|
|
|
void updateState(String tSystemPriceId);
|
|
|
void saveMotoService(Integer openCityId, Integer serverCarModelId, Integer type, String json1, Integer i, String randomNumber,Integer userId);
|
|
}
|