mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
64 lines
1.3 KiB
Java
64 lines
1.3 KiB
Java
package com.jsowell.pile.service;
|
|
|
|
import com.jsowell.pile.domain.MemberGroup;
|
|
import com.jsowell.pile.vo.web.MemberGroupVO;
|
|
|
|
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<MemberGroupVO> 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);
|
|
}
|