mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
updateupdate 汇付会员账户表实体类
This commit is contained in:
@@ -1,49 +0,0 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.AdapayMemberInfo;
|
||||
|
||||
public interface AdapayMemberInfoMapper {
|
||||
/**
|
||||
* delete by primary key
|
||||
* @param id primaryKey
|
||||
* @return deleteCount
|
||||
*/
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
/**
|
||||
* insert record to table
|
||||
* @param record the record
|
||||
* @return insert count
|
||||
*/
|
||||
int insert(AdapayMemberInfo record);
|
||||
|
||||
/**
|
||||
* insert record to table selective
|
||||
* @param record the record
|
||||
* @return insert count
|
||||
*/
|
||||
int insertSelective(AdapayMemberInfo record);
|
||||
|
||||
/**
|
||||
* select by primary key
|
||||
* @param id primary key
|
||||
* @return object by primary key
|
||||
*/
|
||||
AdapayMemberInfo selectByPrimaryKey(Integer id);
|
||||
|
||||
/**
|
||||
* update record selective
|
||||
* @param record the updated record
|
||||
* @return update count
|
||||
*/
|
||||
int updateByPrimaryKeySelective(AdapayMemberInfo record);
|
||||
|
||||
/**
|
||||
* update record
|
||||
* @param record the updated record
|
||||
* @return update count
|
||||
*/
|
||||
int updateByPrimaryKey(AdapayMemberInfo record);
|
||||
|
||||
AdapayMemberInfo selectByMerchantId(String merchantId);
|
||||
}
|
||||
@@ -1,65 +0,0 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.AdapaySettleAccount;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 汇付结算账户Mapper接口
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-06-12
|
||||
*/
|
||||
@Repository
|
||||
public interface AdapaySettleAccountMapper {
|
||||
/**
|
||||
* 查询汇付结算账户
|
||||
*
|
||||
* @param id 汇付结算账户主键
|
||||
* @return 汇付结算账户
|
||||
*/
|
||||
public AdapaySettleAccount selectAdapaySettleAccountById(Long id);
|
||||
|
||||
/**
|
||||
* 查询汇付结算账户列表
|
||||
*
|
||||
* @param adapaySettleAccount 汇付结算账户
|
||||
* @return 汇付结算账户集合
|
||||
*/
|
||||
public List<AdapaySettleAccount> selectAdapaySettleAccountList(AdapaySettleAccount adapaySettleAccount);
|
||||
|
||||
/**
|
||||
* 新增汇付结算账户
|
||||
*
|
||||
* @param adapaySettleAccount 汇付结算账户
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertAdapaySettleAccount(AdapaySettleAccount adapaySettleAccount);
|
||||
|
||||
/**
|
||||
* 修改汇付结算账户
|
||||
*
|
||||
* @param adapaySettleAccount 汇付结算账户
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateAdapaySettleAccount(AdapaySettleAccount adapaySettleAccount);
|
||||
|
||||
/**
|
||||
* 删除汇付结算账户
|
||||
*
|
||||
* @param id 汇付结算账户主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapaySettleAccountById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除汇付结算账户
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapaySettleAccountByIds(Long[] ids);
|
||||
|
||||
AdapaySettleAccount selectByMerchantId(String merchantId);
|
||||
}
|
||||
Reference in New Issue
Block a user