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.
42 lines
808 B
42 lines
808 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighMerchant;
|
|
import com.hai.model.HighMerchantModel;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 商户业务
|
|
*/
|
|
public interface HighMerchantService {
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 增加
|
|
* @Date 2021/3/12 21:24
|
|
**/
|
|
void insertMerchant(HighMerchantModel highMerchant) throws Exception;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 修改
|
|
* @Date 2021/3/12 21:24
|
|
**/
|
|
void updateMerchant(HighMerchantModel highMerchant) throws Exception;
|
|
|
|
/**
|
|
* 根据id查询
|
|
* @param id
|
|
* @return
|
|
*/
|
|
HighMerchantModel getMerchantById(Long id);
|
|
|
|
/**
|
|
* 查询列表
|
|
* @param map
|
|
* @return
|
|
*/
|
|
List<HighMerchant> getMerchantList(Map<String,Object> map);
|
|
|
|
}
|
|
|