会员汇付支付记录表

This commit is contained in:
2023-08-09 16:55:22 +08:00
parent ecc95ceee5
commit d42097429a
5 changed files with 590 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.jsowell.pile.service;
import java.util.List;
import com.jsowell.pile.domain.MemberAdapayRecord;
public interface MemberAdapayRecordService{
int insertSelective(MemberAdapayRecord record);
MemberAdapayRecord selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(MemberAdapayRecord record);
int updateBatch(List<MemberAdapayRecord> list);
int batchInsert(List<MemberAdapayRecord> list);
int insertOrUpdate(MemberAdapayRecord record);
int insertOrUpdateSelective(MemberAdapayRecord record);
}

View File

@@ -0,0 +1,50 @@
package com.jsowell.pile.service.impl;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
import com.jsowell.pile.domain.MemberAdapayRecord;
import com.jsowell.pile.mapper.MemberAdapayRecordMapper;
import com.jsowell.pile.service.MemberAdapayRecordService;
@Service
public class MemberAdapayRecordServiceImpl implements MemberAdapayRecordService{
@Resource
private MemberAdapayRecordMapper memberAdapayRecordMapper;
@Override
public int insertSelective(MemberAdapayRecord record) {
return memberAdapayRecordMapper.insertSelective(record);
}
@Override
public MemberAdapayRecord selectByPrimaryKey(Integer id) {
return memberAdapayRecordMapper.selectByPrimaryKey(id);
}
@Override
public int updateByPrimaryKeySelective(MemberAdapayRecord record) {
return memberAdapayRecordMapper.updateByPrimaryKeySelective(record);
}
@Override
public int updateBatch(List<MemberAdapayRecord> list) {
return memberAdapayRecordMapper.updateBatch(list);
}
@Override
public int batchInsert(List<MemberAdapayRecord> list) {
return memberAdapayRecordMapper.batchInsert(list);
}
@Override
public int insertOrUpdate(MemberAdapayRecord record) {
return memberAdapayRecordMapper.insertOrUpdate(record);
}
@Override
public int insertOrUpdateSelective(MemberAdapayRecord record) {
return memberAdapayRecordMapper.insertOrUpdateSelective(record);
}
}