You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
474 B
22 lines
474 B
|
3 years ago
|
package com.cyl.ums.mapper;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
import com.cyl.ums.domain.Member;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 会员信息Mapper接口
|
||
|
|
*
|
||
|
|
* @author zcc
|
||
|
|
*/
|
||
|
|
public interface MemberMapper extends BaseMapper<Member> {
|
||
|
|
/**
|
||
|
|
* 查询会员信息列表
|
||
|
|
*
|
||
|
|
* @param member 会员信息
|
||
|
|
* @return 会员信息集合
|
||
|
|
*/
|
||
|
|
List<Member> selectByEntity(Member member);
|
||
|
|
}
|