嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/service/HighTyAgentPriceService.java

36 lines
720 B

package com.hai.service;
import com.hai.entity.HighTyAgentPrice;
import java.util.List;
/**
* 加油价格
* @author hurui
*/
public interface HighTyAgentPriceService {
/**
* 编辑价格
* @param tyAgentPrice
*/
void editTyAgentPrice(HighTyAgentPrice tyAgentPrice);
/**
* 根据代理油站id 查询详情
* @param belongType
* @param oilStationId
* @param oilNo
* @return
*/
HighTyAgentPrice getDetail(Integer belongType, Long oilStationId, String oilNo);
/**
* 查询油站价格
* @param belongType
* @param oilStationId
* @return
*/
List<HighTyAgentPrice> getPriceList(Integer belongType, Long oilStationId);
}