update、

This commit is contained in:
2023-12-28 15:23:22 +08:00
parent 39d003597a
commit f4dba67363
5 changed files with 586 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
package com.jsowell.pile.service.impl;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.jsowell.pile.mapper.MemberGroupRelationMapper;
import java.util.List;
import com.jsowell.pile.domain.MemberGroupRelation;
import com.jsowell.pile.service.MemberGroupRelationService;
@Service
public class MemberGroupRelationServiceImpl implements MemberGroupRelationService{
@Resource
private MemberGroupRelationMapper memberGroupRelationMapper;
@Override
public int deleteByPrimaryKey(Integer id) {
return memberGroupRelationMapper.deleteByPrimaryKey(id);
}
@Override
public int insert(MemberGroupRelation record) {
return memberGroupRelationMapper.insert(record);
}
@Override
public int insertOrUpdate(MemberGroupRelation record) {
return memberGroupRelationMapper.insertOrUpdate(record);
}
@Override
public int insertOrUpdateSelective(MemberGroupRelation record) {
return memberGroupRelationMapper.insertOrUpdateSelective(record);
}
@Override
public int insertSelective(MemberGroupRelation record) {
return memberGroupRelationMapper.insertSelective(record);
}
@Override
public MemberGroupRelation selectByPrimaryKey(Integer id) {
return memberGroupRelationMapper.selectByPrimaryKey(id);
}
@Override
public int updateByPrimaryKeySelective(MemberGroupRelation record) {
return memberGroupRelationMapper.updateByPrimaryKeySelective(record);
}
@Override
public int updateByPrimaryKey(MemberGroupRelation record) {
return memberGroupRelationMapper.updateByPrimaryKey(record);
}
@Override
public int updateBatch(List<MemberGroupRelation> list) {
return memberGroupRelationMapper.updateBatch(list);
}
@Override
public int updateBatchSelective(List<MemberGroupRelation> list) {
return memberGroupRelationMapper.updateBatchSelective(list);
}
@Override
public int batchInsert(List<MemberGroupRelation> list) {
return memberGroupRelationMapper.batchInsert(list);
}
}