mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
会员汇付支付记录表
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.MemberAdapayRecord;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface MemberAdapayRecordMapper {
|
||||
/**
|
||||
* insert record to table selective
|
||||
* @param record the record
|
||||
* @return insert count
|
||||
*/
|
||||
int insertSelective(MemberAdapayRecord record);
|
||||
|
||||
/**
|
||||
* select by primary key
|
||||
* @param id primary key
|
||||
* @return object by primary key
|
||||
*/
|
||||
MemberAdapayRecord selectByPrimaryKey(Integer id);
|
||||
|
||||
/**
|
||||
* update record selective
|
||||
* @param record the updated record
|
||||
* @return update count
|
||||
*/
|
||||
int updateByPrimaryKeySelective(MemberAdapayRecord record);
|
||||
|
||||
int updateBatch(List<MemberAdapayRecord> list);
|
||||
|
||||
int batchInsert(@Param("list") List<MemberAdapayRecord> list);
|
||||
|
||||
int insertOrUpdate(MemberAdapayRecord record);
|
||||
|
||||
int insertOrUpdateSelective(MemberAdapayRecord record);
|
||||
}
|
||||
Reference in New Issue
Block a user