| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.domain.TFoundationConfig; |
| | | import com.ruoyi.system.domain.TFoundationPerson; |
| | | import com.ruoyi.system.dto.TFoundationPersonBatchDTO; |
| | | import com.ruoyi.system.dto.TFoundationPersonDTO; |
| | | import com.ruoyi.system.query.TFoundationPersonQuery; |
| | | import com.ruoyi.system.vo.TFoundationPersonVO; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | void add(TFoundationPersonDTO dto); |
| | | void add(TFoundationPersonBatchDTO dto); |
| | | |
| | | /** |
| | | * 修改基础设置 |
| | | * @param dto |
| | | */ |
| | | void edit(TFoundationPersonDTO dto); |
| | | void edit(TFoundationPersonBatchDTO dto); |
| | | |
| | | /** |
| | | * 查询基础设置列表 |
| | | * @return |
| | | */ |
| | | List<TFoundationPersonVO> getList(); |
| | | PageInfo<TFoundationPersonVO> getList(TFoundationPersonQuery query); |
| | | |
| | | /** |
| | | * 判断是否有重复人数 |
| | | * @param list |
| | | * @return |
| | | */ |
| | | boolean hasDuplicateId(List<TFoundationPersonDTO> list); |
| | | |
| | | List<TFoundationPersonVO> getSetList(); |
| | | |
| | | } |