mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
66 lines
1.7 KiB
Java
66 lines
1.7 KiB
Java
package com.jsowell.pile.service;
|
|
|
|
import com.jsowell.pile.domain.AdapayMemberAccount;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 【请填写功能名称】Service接口
|
|
*
|
|
* @author jsowell
|
|
* @date 2023-06-15
|
|
*/
|
|
public interface IAdapayMemberAccountService {
|
|
/**
|
|
* 查询【请填写功能名称】
|
|
*
|
|
* @param id 【请填写功能名称】主键
|
|
* @return 【请填写功能名称】
|
|
*/
|
|
public AdapayMemberAccount selectAdapayMemberAccountById(Long id);
|
|
|
|
/**
|
|
* 查询【请填写功能名称】列表
|
|
*
|
|
* @param adapayMemberAccount 【请填写功能名称】
|
|
* @return 【请填写功能名称】集合
|
|
*/
|
|
public List<AdapayMemberAccount> selectAdapayMemberAccountList(AdapayMemberAccount adapayMemberAccount);
|
|
|
|
/**
|
|
* 新增【请填写功能名称】
|
|
*
|
|
* @param adapayMemberAccount 【请填写功能名称】
|
|
* @return 结果
|
|
*/
|
|
public int insertAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
|
|
|
/**
|
|
* 修改【请填写功能名称】
|
|
*
|
|
* @param adapayMemberAccount 【请填写功能名称】
|
|
* @return 结果
|
|
*/
|
|
public int updateAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
|
|
|
/**
|
|
* 批量删除【请填写功能名称】
|
|
*
|
|
* @param ids 需要删除的【请填写功能名称】主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteAdapayMemberAccountByIds(Long[] ids);
|
|
|
|
/**
|
|
* 删除【请填写功能名称】信息
|
|
*
|
|
* @param id 【请填写功能名称】主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteAdapayMemberAccountById(Long id);
|
|
|
|
AdapayMemberAccount selectByMerchantId(String merchantId);
|
|
|
|
String selectAdapayMemberIdByStationId(String stationId);
|
|
}
|