update 会员组

This commit is contained in:
2023-12-26 14:59:02 +08:00
parent f48e7fe992
commit 2174a550f5
8 changed files with 918 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
package com.jsowell.pile.service;
import com.jsowell.pile.domain.MemberGroup;
import java.util.List;
/**
* 会员组Service接口
*
* @author jsowell
* @date 2023-12-26
*/
public interface MemberGroupService
{
/**
* 查询会员组
*
* @param id 会员组主键
* @return 会员组
*/
public MemberGroup selectMemberGroupById(Long id);
/**
* 查询会员组列表
*
* @param memberGroup 会员组
* @return 会员组集合
*/
public List<MemberGroup> selectMemberGroupList(MemberGroup memberGroup);
/**
* 新增会员组
*
* @param memberGroup 会员组
* @return 结果
*/
public int insertMemberGroup(MemberGroup memberGroup);
/**
* 修改会员组
*
* @param memberGroup 会员组
* @return 结果
*/
public int updateMemberGroup(MemberGroup memberGroup);
/**
* 批量删除会员组
*
* @param ids 需要删除的会员组主键集合
* @return 结果
*/
public int deleteMemberGroupByIds(Long[] ids);
/**
* 删除会员组信息
*
* @param id 会员组主键
* @return 结果
*/
public int deleteMemberGroupById(Long id);
}