|
|
@@ -23,7 +23,7 @@ public interface OrganizationService {
|
|
|
* @param param
|
|
|
* @return
|
|
|
*/
|
|
|
- public ResultContent addOrganization(OrganizationAddParam param);
|
|
|
+ ResultContent addOrganization(OrganizationAddParam param);
|
|
|
|
|
|
/**
|
|
|
* 编辑项目
|
|
|
@@ -39,10 +39,10 @@ public interface OrganizationService {
|
|
|
* @param param
|
|
|
* @return
|
|
|
*/
|
|
|
- public ResultContent update(OrganizationUpdateParam param);
|
|
|
+ ResultContent update(OrganizationUpdateParam param);
|
|
|
|
|
|
// 添加学校
|
|
|
- public ResultContent addSchool(SchoolAddParam param);
|
|
|
+ ResultContent addSchool(SchoolAddParam param);
|
|
|
|
|
|
// 得到平台管理端的数据
|
|
|
ResultContent<OrganizationModel> getPlatformInfo();
|
|
|
@@ -51,7 +51,7 @@ public interface OrganizationService {
|
|
|
ResultContent updateSchool(SchoolUpdateParam param);
|
|
|
|
|
|
// 查询结构详情
|
|
|
- public ResultContent<OrganizationModel> getDetail(String oid);
|
|
|
+ ResultContent<OrganizationModel> getDetail(String oid);
|
|
|
|
|
|
// 得到项目的信息
|
|
|
ResultContent<ProjectOrgModel> getProjectDetail(String projectOid);
|
|
|
@@ -66,25 +66,26 @@ public interface OrganizationService {
|
|
|
ResultContent<OrganizationModel> getBusinessMainDetail(String businessMainOid);
|
|
|
|
|
|
// 删除机构信息
|
|
|
- public ResultContent deleteOrganization(String oid);
|
|
|
+ ResultContent deleteOrganization(String oid);
|
|
|
|
|
|
// 得到oid关联的结构信息
|
|
|
- OidAboutInfo getOidAboutProjectInfo(String oid);
|
|
|
+ OidAboutInfo getOidAboutOrgInfo(String oid);
|
|
|
|
|
|
- public ResultContent<List<OrganizationSimpleModel>> list(OrganizationSearchParam param);
|
|
|
+ ResultContent<List<OrganizationSimpleModel>> list(OrganizationSearchParam param);
|
|
|
|
|
|
- public ResultContent<Page<OrganizationModel>> page(OrganizationSearchParam param, Pageable pageable);
|
|
|
+ ResultContent<Page<OrganizationModel>> page(OrganizationSearchParam param, Pageable pageable);
|
|
|
|
|
|
ResultContent<OrganizationModel> getOrgDetail(String oid);
|
|
|
|
|
|
- public ResultContent<Page<OrganizationModel>> pageProject(OrganizationSearchParam param, Pageable pageable);
|
|
|
+ ResultContent<Page<OrganizationModel>> pageProject(OrganizationSearchParam param, Pageable pageable);
|
|
|
|
|
|
// 查询可用的项目列表
|
|
|
ResultContent<List<OrganizationModel>> getProjectList();
|
|
|
|
|
|
- public ResultContent<List<OrganizationModel>> getUserOrgList(OrganizationUserSearch param);
|
|
|
+ ResultContent<List<OrganizationModel>> getUserOrgList(OrganizationUserSearch param);
|
|
|
|
|
|
- public ResultContent buildCode(AuthType authType);
|
|
|
+ ResultContent buildCode(AuthType authType);
|
|
|
|
|
|
ResultContent initSuperOrganization();
|
|
|
+
|
|
|
}
|