新增项目管理

This commit is contained in:
gxwebsoft
2023-06-08 19:30:24 +08:00
parent 6b9d4c4ef8
commit 6e3bd8f55f
45 changed files with 2826 additions and 23 deletions

View File

@@ -0,0 +1,42 @@
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);
}