对比新文件 |
| | |
| | | package com.flow.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.flow.pojo.Duanxinlog; |
| | | import com.flow.pojo.Manager; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ManagerMapper extends BaseMapper<Manager> { |
| | | |
| | | @Select({"select * from tb_user where none = 0 ORDER BY addtime DESC"}) |
| | | List<Manager> FindManager(); |
| | | |
| | | @Select({"select * from tb_user where none = 0 and name = #{name} or juese = #{juese}"}) |
| | | List<Manager> ifManager(@Param("name") String var1, @Param("juese") String var2); |
| | | } |