2023-06-15 14:17:26 +08:00
|
|
|
package com.jsowell.pile.mapper;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.AdapayMemberAccount;
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 【请填写功能名称】Mapper接口
|
|
|
|
|
*
|
|
|
|
|
* @author jsowell
|
|
|
|
|
* @date 2023-06-15
|
|
|
|
|
*/
|
|
|
|
|
@Repository
|
|
|
|
|
public interface AdapayMemberAccountMapper {
|
|
|
|
|
/**
|
|
|
|
|
* 查询【请填写功能名称】
|
|
|
|
|
*
|
|
|
|
|
* @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 id 【请填写功能名称】主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteAdapayMemberAccountById(Long id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除【请填写功能名称】
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的数据主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteAdapayMemberAccountByIds(Long[] ids);
|
2023-06-15 14:26:53 +08:00
|
|
|
|
|
|
|
|
AdapayMemberAccount selectByMerchantId(String merchantId);
|
2023-07-10 17:06:19 +08:00
|
|
|
|
|
|
|
|
void deleteByMemberId(String memberId);
|
2023-07-10 17:39:08 +08:00
|
|
|
|
|
|
|
|
void updateAdapayMemberAccountByMemberId(AdapayMemberAccount adapayMemberAccount);
|
2023-06-15 14:17:26 +08:00
|
|
|
}
|