File was renamed from ycl-common/src/main/java/com/ycl/service/depart/SccgDepartService.java |
| | |
| | | package com.ycl.service.depart; |
| | | package com.ycl.service.platform.depart; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.api.BasePageDTO; |
| | | import com.ycl.entity.depart.SccgDepart; |
| | | import com.ycl.entity.platform.depart.UmsDepart; |
| | | import com.ycl.vo.depart.DepartVO; |
| | | import org.apache.catalina.LifecycleState; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author lyq |
| | | * @since 2022-09-07 |
| | | */ |
| | | public interface SccgDepartService extends IService<SccgDepart> { |
| | | public interface UmsDepartService extends IService<UmsDepart> { |
| | | /** |
| | | * 新增 |
| | | * |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | SccgDepart loadDepartById(long id); |
| | | UmsDepart loadDepartById(long id); |
| | | |
| | | /** |
| | | * 修改 |
| | |
| | | * 树形 |
| | | * @return |
| | | */ |
| | | List<SccgDepart> tree(); |
| | | List<UmsDepart> tree(); |
| | | |
| | | /** |
| | | * 分页 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | IPage<SccgDepart> pageDepart(DepartVO.PageDepartVO params); |
| | | IPage<UmsDepart> pageDepart(DepartVO.PageDepartVO params); |
| | | |
| | | /** |
| | | * 修改状态 |