mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
汇付会员表加备注字段
This commit is contained in:
@@ -1,25 +1,76 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.AdapayMemberAccount;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-06-15
|
||||
*/
|
||||
@Repository
|
||||
public interface AdapayMemberAccountMapper {
|
||||
/**
|
||||
* 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(AdapayMemberAccount record);
|
||||
|
||||
int insertOrUpdate(AdapayMemberAccount record);
|
||||
|
||||
int insertOrUpdateSelective(AdapayMemberAccount record);
|
||||
|
||||
/**
|
||||
* insert record to table selective
|
||||
*
|
||||
* @param record the record
|
||||
* @return insert count
|
||||
*/
|
||||
int insertSelective(AdapayMemberAccount record);
|
||||
|
||||
/**
|
||||
* select by primary key
|
||||
*
|
||||
* @param id primary key
|
||||
* @return object by primary key
|
||||
*/
|
||||
AdapayMemberAccount selectByPrimaryKey(Integer id);
|
||||
|
||||
/**
|
||||
* update record selective
|
||||
*
|
||||
* @param record the updated record
|
||||
* @return update count
|
||||
*/
|
||||
int updateByPrimaryKeySelective(AdapayMemberAccount record);
|
||||
|
||||
/**
|
||||
* update record
|
||||
*
|
||||
* @param record the updated record
|
||||
* @return update count
|
||||
*/
|
||||
int updateByPrimaryKey(AdapayMemberAccount record);
|
||||
|
||||
int updateBatch(List<AdapayMemberAccount> list);
|
||||
|
||||
int batchInsert(@Param("list") List<AdapayMemberAccount> list);
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 【请填写功能名称】
|
||||
*/
|
||||
public AdapayMemberAccount selectAdapayMemberAccountById(Long id);
|
||||
AdapayMemberAccount selectAdapayMemberAccountById(Long id);
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】列表
|
||||
@@ -27,7 +78,7 @@ public interface AdapayMemberAccountMapper {
|
||||
* @param adapayMemberAccount 【请填写功能名称】
|
||||
* @return 【请填写功能名称】集合
|
||||
*/
|
||||
public List<AdapayMemberAccount> selectAdapayMemberAccountList(AdapayMemberAccount adapayMemberAccount);
|
||||
List<AdapayMemberAccount> selectAdapayMemberAccountList(AdapayMemberAccount adapayMemberAccount);
|
||||
|
||||
/**
|
||||
* 新增【请填写功能名称】
|
||||
@@ -35,7 +86,7 @@ public interface AdapayMemberAccountMapper {
|
||||
* @param adapayMemberAccount 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
||||
int insertAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
||||
|
||||
/**
|
||||
* 修改【请填写功能名称】
|
||||
@@ -43,7 +94,7 @@ public interface AdapayMemberAccountMapper {
|
||||
* @param adapayMemberAccount 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
||||
int updateAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount);
|
||||
|
||||
/**
|
||||
* 删除【请填写功能名称】
|
||||
@@ -51,7 +102,7 @@ public interface AdapayMemberAccountMapper {
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayMemberAccountById(Long id);
|
||||
int deleteAdapayMemberAccountById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除【请填写功能名称】
|
||||
@@ -59,7 +110,7 @@ public interface AdapayMemberAccountMapper {
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayMemberAccountByIds(Long[] ids);
|
||||
int deleteAdapayMemberAccountByIds(Long[] ids);
|
||||
|
||||
AdapayMemberAccount selectByMerchantId(String merchantId);
|
||||
|
||||
@@ -68,4 +119,4 @@ public interface AdapayMemberAccountMapper {
|
||||
void updateAdapayMemberAccountByMemberId(AdapayMemberAccount adapayMemberAccount);
|
||||
|
||||
AdapayMemberAccount selectByMemberId(String memberId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user