mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 15:05:18 +08:00
update、
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user