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,30 @@
package com.jsowell.pile.service;
import java.util.List;
import com.jsowell.pile.domain.MemberGroupRelation;
public interface MemberGroupRelationService{
int deleteByPrimaryKey(Integer id);
int insert(MemberGroupRelation record);
int insertOrUpdate(MemberGroupRelation record);
int insertOrUpdateSelective(MemberGroupRelation record);
int insertSelective(MemberGroupRelation record);
MemberGroupRelation selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(MemberGroupRelation record);
int updateByPrimaryKey(MemberGroupRelation record);
int updateBatch(List<MemberGroupRelation> list);
int updateBatchSelective(List<MemberGroupRelation> list);
int batchInsert(List<MemberGroupRelation> list);
}