43 lines
1018 B
Java
43 lines
1018 B
Java
package com.gxwebsoft.tower.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.gxwebsoft.common.core.web.PageResult;
|
|
import com.gxwebsoft.tower.entity.TowerPlaceStandard;
|
|
import com.gxwebsoft.tower.param.TowerPlaceStandardParam;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 检查标准附件表Service
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-06-08 15:37:00
|
|
*/
|
|
public interface TowerPlaceStandardService extends IService<TowerPlaceStandard> {
|
|
|
|
/**
|
|
* 分页关联查询
|
|
*
|
|
* @param param 查询参数
|
|
* @return PageResult<TowerPlaceStandard>
|
|
*/
|
|
PageResult<TowerPlaceStandard> pageRel(TowerPlaceStandardParam param);
|
|
|
|
/**
|
|
* 关联查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<TowerPlaceStandard>
|
|
*/
|
|
List<TowerPlaceStandard> listRel(TowerPlaceStandardParam param);
|
|
|
|
/**
|
|
* 根据id查询
|
|
*
|
|
* @param id 参数ID
|
|
* @return TowerPlaceStandard
|
|
*/
|
|
TowerPlaceStandard getByIdRel(Integer id);
|
|
|
|
}
|