mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
64 lines
1.7 KiB
Java
64 lines
1.7 KiB
Java
|
|
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);
|
||
|
|
}
|