package cn.gistack.sm.sjztmd.service;
|
|
import cn.gistack.sm.sjztmd.entity.AttAdBase;
|
import cn.gistack.sm.sjztmd.vo.AttAdBaseVO;
|
import cn.gistack.sm.sjztmd.vo.PersonVO;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @ClassName IAttAdBase
|
* @Description TODO
|
* @Author aix
|
* @Date 2023/4/21 19:55
|
* @Version 1.0
|
*/
|
public interface IAttAdBaseService extends IService<AttAdBase> {
|
|
List<AttAdBaseVO> lazyTree(String parentCode, Map<String, Object> param);
|
|
List<AttAdBaseVO> lazyTreeAll(String parentCode, Map<String, Object> param);
|
|
/**
|
* 查询区域菜单树-带层级
|
* @param parentCode
|
* @param obj
|
* @return
|
*/
|
Object selectAttAdBaseTree(String parentCode, Map<String, Object> obj);
|
|
/**
|
* 根据水库编号查询除责任人之外的人员信息
|
* @param res_cd
|
* @param areaList
|
* @return
|
*/
|
List<PersonVO> getPersonListByResGuid(String res_cd, String areaList);
|
|
/**
|
* 获取详情
|
* @param attAdBase
|
* @return
|
*/
|
AttAdBaseVO getDetail(AttAdBase attAdBase);
|
}
|