20 lines
458 B
20 lines
458 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighMerchantTripartitePlatform;
|
|
|
|
public interface HighMerchantTripartitePlatformService {
|
|
|
|
/**
|
|
* 编辑数据
|
|
* @param tripartitePlatform
|
|
*/
|
|
void editDate(HighMerchantTripartitePlatform tripartitePlatform);
|
|
|
|
/**
|
|
* 查询详情
|
|
* @param merId
|
|
* @param platformType
|
|
* @return
|
|
*/
|
|
HighMerchantTripartitePlatform getDetail(Long merId,Integer platformType);
|
|
}
|
|
|