| | |
| | | |
| | | import com.stylefeng.guns.modular.system.model.TDevice; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | */ |
| | | public interface TDeviceMapper extends BaseMapper<TDevice> { |
| | | |
| | | List<Map<String,Object>> searchList(String serNum, String phone, String name, Integer status); |
| | | List<Map<String,Object>> searchList(@Param("serNum") String serNum,@Param("phone") String phone,@Param("name") String name,@Param("status") Integer status); |
| | | } |