提交汇付会员实体类

This commit is contained in:
2023-06-07 15:01:49 +08:00
parent eb1e678378
commit da5d3d1457
5 changed files with 406 additions and 0 deletions

View File

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