| | |
| | | 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; |
| | |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | void add(List<TFoundationPersonDTO> dto); |
| | | void add(TFoundationPersonBatchDTO dto); |
| | | |
| | | /** |
| | | * 修改基础设置 |
| | | * @param dto |
| | | */ |
| | | void edit(List<TFoundationPersonDTO> dto); |
| | | void edit(TFoundationPersonBatchDTO dto); |
| | | |
| | | /** |
| | | * 查询基础设置列表 |
| | |
| | | */ |
| | | boolean hasDuplicateId(List<TFoundationPersonDTO> list); |
| | | |
| | | List<TFoundationPersonVO> getSetList(); |
| | | |
| | | List<TFoundationPersonVO> getPersonList(); |
| | | |
| | | |
| | | } |