package com.stylefeng.guns.modular.system.dao;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import com.stylefeng.guns.modular.system.model.SystemPrice;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.Map;
|
|
public interface SystemPriceMapper extends BaseMapper<SystemPrice> {
|
|
|
/**
|
* 获取价格
|
* @param systemPriceCityId
|
* @param type
|
* @return
|
*/
|
Map<String, Object> query(@Param("systemPriceCityId") Integer systemPriceCityId, @Param("type") Integer type,
|
@Param("serverCarModelId") Integer serverCarModelId);
|
}
|