update 汇付会员账户表实体类

This commit is contained in:
2023-06-15 14:17:26 +08:00
parent c7bd2103da
commit 47b7ebc636
6 changed files with 399 additions and 4 deletions

View File

@@ -0,0 +1,61 @@
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);
}