12345678910111213141516171819 |
- package com.tour.module.mapper;
- import com.tour.module.domain.Agent;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 代理商信息Mapper接口
- *
- * @author zoe
- * @date 2023-05-23
- */
- public interface AgentMapper extends BaseMapper<Agent> {
- List<Agent> getAgentAll(Long id);
- Agent selectByMobile(@Param("mobile") String mobile, @Param("id") Long id);
- }
|