package com.hxzk.gps.service.Loragateway;
|
|
import com.hxzk.gps.controller.Loragateway.dto.TableSearchResult.TableSearchResult;
|
import com.hxzk.gps.entity.Loragateway.TbLoragateway;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.hxzk.gps.result.ResultTable;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-22
|
*/
|
public interface TbLoragatewayService extends IService<TbLoragateway> {
|
/*
|
* 网关列表查询接口
|
* @param TableSearchResult
|
* @return ResultTable
|
* */
|
ResultTable FindLoragatewayInfo(@RequestBody TableSearchResult TableSearchResult);
|
|
}
|