@@ -55,7 +55,6 @@ public class ExpertController { | |||||
@GetMapping("/detail") | @GetMapping("/detail") | ||||
@ApiOperation("专家获取专家详细信息") | @ApiOperation("专家获取专家详细信息") | ||||
@WebLog("专家获取专家详细信息") | |||||
public ExpertFullInfoVO getExpertFullInfoDetail() { | public ExpertFullInfoVO getExpertFullInfoDetail() { | ||||
return expertManage.getExpertFullInfoDetail(null); | return expertManage.getExpertFullInfoDetail(null); | ||||
} | } | ||||
@@ -63,14 +62,12 @@ public class ExpertController { | |||||
@GetMapping("/admin/detail") | @GetMapping("/admin/detail") | ||||
@ApiOperation("专家管理员获取专家详细信息") | @ApiOperation("专家管理员获取专家详细信息") | ||||
@WebLog("专家管理员获取专家详细信息") | |||||
public ExpertFullInfoVO getExpertFullInfoDetail(@RequestParam(value = "expertUserId") @NotNull Long expertUserId) { | public ExpertFullInfoVO getExpertFullInfoDetail(@RequestParam(value = "expertUserId") @NotNull Long expertUserId) { | ||||
return expertManage.getExpertFullInfoDetail(expertUserId); | return expertManage.getExpertFullInfoDetail(expertUserId); | ||||
} | } | ||||
@PostMapping("/expert-library/list") | @PostMapping("/expert-library/list") | ||||
@ApiOperation("专家库列表查询接口") | @ApiOperation("专家库列表查询接口") | ||||
@WebLog("专家库列表查询接口") | |||||
public PageVo<ExpertAdminExpertManageListVO> getExpertLibraryList( | public PageVo<ExpertAdminExpertManageListVO> getExpertLibraryList( | ||||
@RequestBody @Valid ExpertAdminExpertManageQuery expertAdminExpertManageQuery) { | @RequestBody @Valid ExpertAdminExpertManageQuery expertAdminExpertManageQuery) { | ||||
return expertAdminManage.getExpertLibraryList(expertAdminExpertManageQuery); | return expertAdminManage.getExpertLibraryList(expertAdminExpertManageQuery); | ||||
@@ -35,14 +35,12 @@ public class ExpertMetaApplyController { | |||||
@PostMapping("/list") | @PostMapping("/list") | ||||
@ApiOperation(value = "审核列表筛选") | @ApiOperation(value = "审核列表筛选") | ||||
@WebLog("审核列表筛选") | |||||
public PageVo<ExpertApplyMetaVO> metaApplyListQuery(@RequestBody @Valid MetaApplyListQuery metaApplyListQuery) { | public PageVo<ExpertApplyMetaVO> metaApplyListQuery(@RequestBody @Valid MetaApplyListQuery metaApplyListQuery) { | ||||
return expertMetaApplyManage.metaApplyListQuery(metaApplyListQuery); | return expertMetaApplyManage.metaApplyListQuery(metaApplyListQuery); | ||||
} | } | ||||
@PostMapping("/result") | @PostMapping("/result") | ||||
@ApiOperation(value = "审核结果处理") | @ApiOperation(value = "审核结果处理") | ||||
@WebLog("审核结果处理") | |||||
public void metaApplyResult(@RequestBody @Valid MetaApplyResultRequest applyResultRequest) { | public void metaApplyResult(@RequestBody @Valid MetaApplyResultRequest applyResultRequest) { | ||||
expertMetaApplyManage.metaApplyResult(applyResultRequest); | expertMetaApplyManage.metaApplyResult(applyResultRequest); | ||||
} | } | ||||
@@ -55,7 +53,6 @@ public class ExpertMetaApplyController { | |||||
} | } | ||||
@ApiOperation("申请审核详情") | @ApiOperation("申请审核详情") | ||||
@WebLog("申请审核详情") | |||||
@GetMapping("/detail/{applyId}") | @GetMapping("/detail/{applyId}") | ||||
public MetaApplyResultVo applyAuditDetail(@PathVariable Long applyId) { | public MetaApplyResultVo applyAuditDetail(@PathVariable Long applyId) { | ||||
return expertMetaApplyManage.metaApplyResult(applyId); | return expertMetaApplyManage.metaApplyResult(applyId); | ||||
@@ -33,7 +33,6 @@ public class ReviewTemplateSettingsController { | |||||
@GetMapping("/template/{templateType}/{regionCode}") | @GetMapping("/template/{templateType}/{regionCode}") | ||||
@ApiOperation("根据模版类型获取模版") | @ApiOperation("根据模版类型获取模版") | ||||
@WebLog("根据模版类型获取模版") | |||||
public ReviewTemplateVO getReviewTemplateByType(@PathVariable Integer templateType, @PathVariable String regionCode) { | public ReviewTemplateVO getReviewTemplateByType(@PathVariable Integer templateType, @PathVariable String regionCode) { | ||||
return reviewTemplateSettingsManage.getReviewTemplateSettings(templateType, regionCode); | return reviewTemplateSettingsManage.getReviewTemplateSettings(templateType, regionCode); | ||||
} | } | ||||
@@ -47,7 +46,6 @@ public class ReviewTemplateSettingsController { | |||||
@GetMapping("/template") | @GetMapping("/template") | ||||
@ApiOperation("根据模版ID获取评审模版") | @ApiOperation("根据模版ID获取评审模版") | ||||
@WebLog("根据模版ID获取评审模版") | |||||
@ApiImplicitParam(name = "templateId", defaultValue = "模版ID") | @ApiImplicitParam(name = "templateId", defaultValue = "模版ID") | ||||
public ReviewTemplateVO getTemplateById(@RequestParam Long templateId) { | public ReviewTemplateVO getTemplateById(@RequestParam Long templateId) { | ||||
return reviewTemplateSettingsManage.getReviewTemplateSettings(templateId); | return reviewTemplateSettingsManage.getReviewTemplateSettings(templateId); | ||||
@@ -55,7 +53,6 @@ public class ReviewTemplateSettingsController { | |||||
@GetMapping("/templates") | @GetMapping("/templates") | ||||
@ApiOperation("(批量)根据模版ID获取评审模版") | @ApiOperation("(批量)根据模版ID获取评审模版") | ||||
@WebLog("(批量)根据模版ID获取评审模版") | |||||
@ApiImplicitParam(name = "templateIds", defaultValue = "模版ID集合") | @ApiImplicitParam(name = "templateIds", defaultValue = "模版ID集合") | ||||
public List<ReviewTemplateVO> getTemplateById(@RequestParam List<Long> templateIds) { | public List<ReviewTemplateVO> getTemplateById(@RequestParam List<Long> templateIds) { | ||||
return reviewTemplateSettingsManage.listReviewTemplateSettings(templateIds); | return reviewTemplateSettingsManage.listReviewTemplateSettings(templateIds); | ||||
@@ -32,7 +32,6 @@ public class DocumentationController { | |||||
@GetMapping("/group/list") | @GetMapping("/group/list") | ||||
@ApiOperation(value = "分组列表", notes = "分组列表") | @ApiOperation(value = "分组列表", notes = "分组列表") | ||||
@WebLog("档案管理-资料文档-分组列表") | |||||
public List<DocumentationGroupVO> groupList(){ | public List<DocumentationGroupVO> groupList(){ | ||||
return documentationManage.groupList(); | return documentationManage.groupList(); | ||||
} | } | ||||
@@ -53,14 +52,12 @@ public class DocumentationController { | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
@ApiOperation(value = "文档列表", notes = "文档列表") | @ApiOperation(value = "文档列表", notes = "文档列表") | ||||
@WebLog("档案管理-资料文档-文档列表") | |||||
public PageVo<DocumentationVO> list(@ModelAttribute DocumentationListParam param){ | public PageVo<DocumentationVO> list(@ModelAttribute DocumentationListParam param){ | ||||
return documentationManage.list(param); | return documentationManage.list(param); | ||||
} | } | ||||
@GetMapping("/detail/{id}") | @GetMapping("/detail/{id}") | ||||
@ApiOperation(value = "文档详情", notes = "文档详情") | @ApiOperation(value = "文档详情", notes = "文档详情") | ||||
@WebLog("档案管理-资料文档-文档详情") | |||||
public DocumentationVO detail(@PathVariable Long id){ | public DocumentationVO detail(@PathVariable Long id){ | ||||
return documentationManage.detail(id); | return documentationManage.detail(id); | ||||
} | } | ||||
@@ -29,14 +29,12 @@ public class ProjectFileController { | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
@ApiOperation(value = "档案列表", notes = "档案列表") | @ApiOperation(value = "档案列表", notes = "档案列表") | ||||
@WebLog("档案管理-项目档案-档案列表") | |||||
public PageVo<ProjectFileListVO> list(@ModelAttribute ProjectFileListParam param){ | public PageVo<ProjectFileListVO> list(@ModelAttribute ProjectFileListParam param){ | ||||
return projectFileManage.list(param); | return projectFileManage.list(param); | ||||
} | } | ||||
@GetMapping("/{projectId}") | @GetMapping("/{projectId}") | ||||
@ApiOperation(value = "档案详情", notes = "档案详情") | @ApiOperation(value = "档案详情", notes = "档案详情") | ||||
@WebLog("档案管理-项目档案-档案详情") | |||||
public ProjectFileVO file(@PathVariable Long projectId){ | public ProjectFileVO file(@PathVariable Long projectId){ | ||||
return projectFileManage.file(projectId); | return projectFileManage.file(projectId); | ||||
} | } | ||||
@@ -41,7 +41,6 @@ public class CompanyFiscalCodeController { | |||||
@ApiOperation(value = "获取财政编码-配置", notes = "获取财政编码配置") | @ApiOperation(value = "获取财政编码-配置", notes = "获取财政编码配置") | ||||
@PostMapping("/fiscal-and-seal/get-configure") | @PostMapping("/fiscal-and-seal/get-configure") | ||||
@WebLog("获取财政编码配置") | |||||
public ResCompanyFiscalCodeAndSealSnVO getFiscalAndSealCodeConfigure(@Valid @RequestBody ReqGetCompanyFiscalCodeAndSealSnPO request) { | public ResCompanyFiscalCodeAndSealSnVO getFiscalAndSealCodeConfigure(@Valid @RequestBody ReqGetCompanyFiscalCodeAndSealSnPO request) { | ||||
return companyFiscalCodeManage.getFiscalCodeConfigure(request); | return companyFiscalCodeManage.getFiscalCodeConfigure(request); | ||||
} | } | ||||
@@ -42,7 +42,6 @@ public class ExpertLeaveController { | |||||
} | } | ||||
@ApiOperation("请假详情") | @ApiOperation("请假详情") | ||||
@WebLog("请假详情") | |||||
@GetMapping(value = {"/detail/{leaveId}", "/detail/{auditId}/byApply"}) | @GetMapping(value = {"/detail/{leaveId}", "/detail/{auditId}/byApply"}) | ||||
public LeaveDetailVO detail(@PathVariable(required = false) Long leaveId, | public LeaveDetailVO detail(@PathVariable(required = false) Long leaveId, | ||||
@PathVariable(required = false) Long auditId) { | @PathVariable(required = false) Long auditId) { | ||||
@@ -41,21 +41,18 @@ public class DashboardController { | |||||
@ApiOperation("待办:专家评价列表") | @ApiOperation("待办:专家评价列表") | ||||
@GetMapping("/todo/expertEvaluation") | @GetMapping("/todo/expertEvaluation") | ||||
@WebLog(value = "待办:专家评价列表") | |||||
public PageVo<ExpertEvaluationToDoListItemVO> expertEvaluationToDo(PagePo po) { | public PageVo<ExpertEvaluationToDoListItemVO> expertEvaluationToDo(PagePo po) { | ||||
return dashboardManage.expertEvaluationToDo(po); | return dashboardManage.expertEvaluationToDo(po); | ||||
} | } | ||||
@ApiOperation("待办:专家待替换列表") | @ApiOperation("待办:专家待替换列表") | ||||
@GetMapping("/todo/expertReplace") | @GetMapping("/todo/expertReplace") | ||||
@WebLog(value = "待办:专家待替换列表") | |||||
public PageVo<ExpertReplaceTodoListItemVO> expertReplaceToDo(PagePo po) { | public PageVo<ExpertReplaceTodoListItemVO> expertReplaceToDo(PagePo po) { | ||||
return dashboardManage.expertReplaceTodoList(po); | return dashboardManage.expertReplaceTodoList(po); | ||||
} | } | ||||
@ApiOperation("待办:专家待确认列表") | @ApiOperation("待办:专家待确认列表") | ||||
@GetMapping("/todo/expertConfirm") | @GetMapping("/todo/expertConfirm") | ||||
@WebLog(value = "待办:专家待确认列表") | |||||
public PageVo<MeetingConfirmToDoListItemVO> expertConfirmToDo(PagePo po) { | public PageVo<MeetingConfirmToDoListItemVO> expertConfirmToDo(PagePo po) { | ||||
return dashboardManage.expertConfirmToDo(po); | return dashboardManage.expertConfirmToDo(po); | ||||
} | } | ||||
@@ -70,21 +70,18 @@ public class MeetingController { | |||||
@ApiOperation("管理员会议列表") | @ApiOperation("管理员会议列表") | ||||
@GetMapping("/manager/meetingList") | @GetMapping("/manager/meetingList") | ||||
@WebLog(value = "管理员会议列表") | |||||
public PageVo<MeetingByManagerVO> meetingListByManager(MeetingListReq req) { | public PageVo<MeetingByManagerVO> meetingListByManager(MeetingListReq req) { | ||||
return meetingManage.meetingListForManager(req); | return meetingManage.meetingListForManager(req); | ||||
} | } | ||||
@ApiOperation("专家会议列表") | @ApiOperation("专家会议列表") | ||||
@GetMapping("/expert/meetingList") | @GetMapping("/expert/meetingList") | ||||
@WebLog(value = "专家会议列表") | |||||
public PageVo<MeetingByManagerVO> meetingListByExpert(MeetingListReq po) { | public PageVo<MeetingByManagerVO> meetingListByExpert(MeetingListReq po) { | ||||
return meetingManage.meetingListForExpert(po); | return meetingManage.meetingListForExpert(po); | ||||
} | } | ||||
@ApiOperation("专家请假会议列表") | @ApiOperation("专家请假会议列表") | ||||
@GetMapping("/expert/meetingListForLeave") | @GetMapping("/expert/meetingListForLeave") | ||||
@WebLog(value = "专家请假会议列表") | |||||
public PageVo<MeetingByManagerVO> meetingListForLeave(MeetingLeaveListReq req) { | public PageVo<MeetingByManagerVO> meetingListForLeave(MeetingLeaveListReq req) { | ||||
return meetingManage.meetingListForLeave(req); | return meetingManage.meetingListForLeave(req); | ||||
} | } | ||||
@@ -36,7 +36,6 @@ public class MetaDictionaryManageController { | |||||
@PostMapping("/list") | @PostMapping("/list") | ||||
@ApiOperation("字典筛选数据返回") | @ApiOperation("字典筛选数据返回") | ||||
@WebLog("字典筛选数据返回") | |||||
public List<ResDictionaryListVO> expertDictList(@RequestBody ReqDictionaryListPO request) { | public List<ResDictionaryListVO> expertDictList(@RequestBody ReqDictionaryListPO request) { | ||||
DictionaryRequestValidator.dictionaryRequestValidator(request); | DictionaryRequestValidator.dictionaryRequestValidator(request); | ||||
return metaManage.getDictionaryList(request); | return metaManage.getDictionaryList(request); | ||||
@@ -44,7 +43,6 @@ public class MetaDictionaryManageController { | |||||
@PostMapping("/common/list") | @PostMapping("/common/list") | ||||
@ApiOperation("通用字典筛选数据返回") | @ApiOperation("通用字典筛选数据返回") | ||||
@WebLog("通用字典筛选数据返回") | |||||
public List<ResDictionaryListVO> commonDictList(@RequestBody ReqDictionaryListPO request) { | public List<ResDictionaryListVO> commonDictList(@RequestBody ReqDictionaryListPO request) { | ||||
DictionaryRequestValidator.dictionaryRequestValidator(request); | DictionaryRequestValidator.dictionaryRequestValidator(request); | ||||
return metaManage.commonDictList(request); | return metaManage.commonDictList(request); | ||||
@@ -47,7 +47,6 @@ public class MetaTagManageController { | |||||
@PostMapping("/tag") | @PostMapping("/tag") | ||||
@ApiOperation("获取专家标签的树状结构") | @ApiOperation("获取专家标签的树状结构") | ||||
@WebLog("获取专家标签的树状结构") | |||||
public List<ResTagTreeVO> getRegionTree(HttpServletResponse response, @RequestBody ReqTagListPO request) { | public List<ResTagTreeVO> getRegionTree(HttpServletResponse response, @RequestBody ReqTagListPO request) { | ||||
response.setHeader("Cache-Control", MAX_AGE_STR); | response.setHeader("Cache-Control", MAX_AGE_STR); | ||||
TagListRequestValidator.tagListRequestValidator(request); | TagListRequestValidator.tagListRequestValidator(request); | ||||
@@ -56,14 +55,12 @@ public class MetaTagManageController { | |||||
@PostMapping("/tag/query") | @PostMapping("/tag/query") | ||||
@ApiOperation("标签查询接口") | @ApiOperation("标签查询接口") | ||||
@WebLog("标签查询接口") | |||||
public List<ResTagListVO> tagQuery(@Valid @RequestBody ReqTagQueryPO reqTagQueryPO) { | public List<ResTagListVO> tagQuery(@Valid @RequestBody ReqTagQueryPO reqTagQueryPO) { | ||||
return metaManage.tagQuery(reqTagQueryPO); | return metaManage.tagQuery(reqTagQueryPO); | ||||
} | } | ||||
@PostMapping("/tag-tyoe/list") | @PostMapping("/tag-tyoe/list") | ||||
@ApiOperation("获取标签分类列表") | @ApiOperation("获取标签分类列表") | ||||
@WebLog("获取标签分类列表") | |||||
public List<ResTagTypeVO> tagTypeList() { | public List<ResTagTypeVO> tagTypeList() { | ||||
return metaManage.tagTypeList(); | return metaManage.tagTypeList(); | ||||
} | } | ||||
@@ -40,20 +40,17 @@ public class DingOrganizationController { | |||||
@ApiOperation("单位列表筛选") | @ApiOperation("单位列表筛选") | ||||
@PostMapping("/list") | @PostMapping("/list") | ||||
@WebLog("单位列表筛选") | |||||
public PageVo<ResOrganizationListVO> organizationList(@Valid @RequestBody ReqOrganizationListPO reqOrganizationListPO) { | public PageVo<ResOrganizationListVO> organizationList(@Valid @RequestBody ReqOrganizationListPO reqOrganizationListPO) { | ||||
return organizationManage.organizationList(reqOrganizationListPO); | return organizationManage.organizationList(reqOrganizationListPO); | ||||
} | } | ||||
@PostMapping("/get-child-list") | @PostMapping("/get-child-list") | ||||
@ApiOperation("获取组织架构的树状结构(单位筛选列表)") | @ApiOperation("获取组织架构的树状结构(单位筛选列表)") | ||||
@WebLog("获取组织架构的树状结构(单位筛选列表)") | |||||
public List<OrganizationTreeVO> getChildOrganizationList(@RequestParam(value = "parentCode", required = false) String parentCode, @RequestParam(value = "orgName", required = false) String orgName) { | public List<OrganizationTreeVO> getChildOrganizationList(@RequestParam(value = "parentCode", required = false) String parentCode, @RequestParam(value = "orgName", required = false) String orgName) { | ||||
return organizationManage.getChildOrganizationList(parentCode, orgName, false); | return organizationManage.getChildOrganizationList(parentCode, orgName, false); | ||||
} | } | ||||
@ApiOperation("组织树状列表筛选(前端定制化接口不可复用)") | @ApiOperation("组织树状列表筛选(前端定制化接口不可复用)") | ||||
@WebLog("组织树状列表筛选(前端定制化接口不可复用)") | |||||
@PostMapping("/tree-list") | @PostMapping("/tree-list") | ||||
public List<KeyTreeVO> treeVOList(@Valid @RequestBody ReqSynthesizePO request) { | public List<KeyTreeVO> treeVOList(@Valid @RequestBody ReqSynthesizePO request) { | ||||
return organizationManage.treeRubbishVOList(request); | return organizationManage.treeRubbishVOList(request); | ||||
@@ -39,7 +39,6 @@ public class GovBusinessStripController { | |||||
@GetMapping("/get-child-list") | @GetMapping("/get-child-list") | ||||
@ApiOperation("获取条线标签的的树状结构") | @ApiOperation("获取条线标签的的树状结构") | ||||
@WebLog("获取条线标签的的树状结构") | |||||
public List<GovBusinessStripTreeVO> getChildOrganizationList(@RequestParam(value = "parentCode", required = false) String parentCode) { | public List<GovBusinessStripTreeVO> getChildOrganizationList(@RequestParam(value = "parentCode", required = false) String parentCode) { | ||||
return govBusinessStripManage.getChildOrganizationList(parentCode); | return govBusinessStripManage.getChildOrganizationList(parentCode); | ||||
} | } | ||||
@@ -47,7 +46,6 @@ public class GovBusinessStripController { | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
@ApiOperation("获取省局条线列表") | @ApiOperation("获取省局条线列表") | ||||
@WebLog("获取省局条线列表") | |||||
public List<ProvincialGovBusinessStripVO> getProvincialGovBusinessStripList(@RequestParam(value = "businessStripName", required = false) String businessStripName) { | public List<ProvincialGovBusinessStripVO> getProvincialGovBusinessStripList(@RequestParam(value = "businessStripName", required = false) String businessStripName) { | ||||
return govBusinessStripManage.getProvincialGovBusinessStripList(businessStripName); | return govBusinessStripManage.getProvincialGovBusinessStripList(businessStripName); | ||||
} | } | ||||
@@ -33,7 +33,6 @@ public class ProcDefController { | |||||
@ApiOperation(value = "单位流程配置列表", notes = "单位流程配置列表") | @ApiOperation(value = "单位流程配置列表", notes = "单位流程配置列表") | ||||
@GetMapping("/list") | @GetMapping("/list") | ||||
@WebLog("单位流程配置列表") | |||||
public PageVo<OrgProcdefVo> list(@RequestParam String orgCode, @RequestParam(defaultValue = "1") Integer pageNumber, | public PageVo<OrgProcdefVo> list(@RequestParam String orgCode, @RequestParam(defaultValue = "1") Integer pageNumber, | ||||
@RequestParam(defaultValue = "10") Integer pageSize) { | @RequestParam(defaultValue = "10") Integer pageSize) { | ||||
return orgProcdefService.getOrgProcessByOrgCode(orgCode, pageNumber, pageSize); | return orgProcdefService.getOrgProcessByOrgCode(orgCode, pageNumber, pageSize); | ||||
@@ -41,7 +40,6 @@ public class ProcDefController { | |||||
@ApiOperation(value = "单位流程配置详情", notes = "单位流程配置详情") | @ApiOperation(value = "单位流程配置详情", notes = "单位流程配置详情") | ||||
@GetMapping("/detail/{processDefId}") | @GetMapping("/detail/{processDefId}") | ||||
@WebLog("单位流程配置详情") | |||||
public OrgProcdefVo detail(@PathVariable String processDefId) { | public OrgProcdefVo detail(@PathVariable String processDefId) { | ||||
return orgProcessModelService.getProcess(processDefId); | return orgProcessModelService.getProcess(processDefId); | ||||
} | } | ||||
@@ -39,7 +39,6 @@ public class ConstructionController { | |||||
private final ConstructionManage constructionManage; | private final ConstructionManage constructionManage; | ||||
@ApiOperation(value = "待合同备案的项目列表", notes = "合同备案的项目列表") | @ApiOperation(value = "待合同备案的项目列表", notes = "合同备案的项目列表") | ||||
@WebLog("合同备案的项目列表") | |||||
@GetMapping("/contract/project-list") | @GetMapping("/contract/project-list") | ||||
public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | ||||
return constructionManage.projectLibList(req); | return constructionManage.projectLibList(req); | ||||
@@ -53,7 +52,6 @@ public class ConstructionController { | |||||
} | } | ||||
@ApiOperation(value = "合同备案的详情-通过项目ID", notes = "合同备案的详情-通过项目ID") | @ApiOperation(value = "合同备案的详情-通过项目ID", notes = "合同备案的详情-通过项目ID") | ||||
@WebLog("合同备案的详情-通过项目ID") | |||||
@GetMapping("/contract/detail/{projectId}") | @GetMapping("/contract/detail/{projectId}") | ||||
public ContractVO detailContractByProjectId(@PathVariable Long projectId) { | public ContractVO detailContractByProjectId(@PathVariable Long projectId) { | ||||
return constructionManage.detailContractByProjectId(projectId); | return constructionManage.detailContractByProjectId(projectId); | ||||
@@ -67,7 +65,6 @@ public class ConstructionController { | |||||
} | } | ||||
@ApiOperation(value = "待初验备案的项目列表", notes = "待初验备案的项目列表") | @ApiOperation(value = "待初验备案的项目列表", notes = "待初验备案的项目列表") | ||||
@WebLog("待初验备案的项目列表") | |||||
@GetMapping("/pre-ins/project-list") | @GetMapping("/pre-ins/project-list") | ||||
public PageVo<ProjectLibListItemVO> preProjectlist(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> preProjectlist(@ModelAttribute ProjectListReq req) { | ||||
return constructionManage.preProjectlist(req); | return constructionManage.preProjectlist(req); | ||||
@@ -81,7 +78,6 @@ public class ConstructionController { | |||||
} | } | ||||
@ApiOperation(value = "初验备案的详情-通过项目ID", notes = "初验备案的详情-通过项目ID") | @ApiOperation(value = "初验备案的详情-通过项目ID", notes = "初验备案的详情-通过项目ID") | ||||
@WebLog("初验备案的详情-通过项目ID") | |||||
@GetMapping("/pre-ins/detail/{projectId}") | @GetMapping("/pre-ins/detail/{projectId}") | ||||
public PreInsVO detailPreInsByProjectId(@PathVariable Long projectId) { | public PreInsVO detailPreInsByProjectId(@PathVariable Long projectId) { | ||||
return constructionManage.detailPreInsByProjectId(projectId); | return constructionManage.detailPreInsByProjectId(projectId); | ||||
@@ -33,7 +33,6 @@ public class ConstructionPlanController { | |||||
private final ConstructionPlanManage constructionPlanManage; | private final ConstructionPlanManage constructionPlanManage; | ||||
@ApiOperation(value = "可申报建设方案项目列表", notes = "可申报建设方案项目列表") | @ApiOperation(value = "可申报建设方案项目列表", notes = "可申报建设方案项目列表") | ||||
@WebLog("可申报建设方案项目列表") | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute ConstrctionPlanListReq planReq) { | public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute ConstrctionPlanListReq planReq) { | ||||
return constructionPlanManage.projectLibList(planReq); | return constructionPlanManage.projectLibList(planReq); | ||||
@@ -46,14 +46,12 @@ public class DeclaredProjectController { | |||||
private final ProjectAdjustmentManage projectAdjustmentManage; | private final ProjectAdjustmentManage projectAdjustmentManage; | ||||
@ApiOperation(value = "申报项目已申报列表", notes = "申报项目已申报列表") | @ApiOperation(value = "申报项目已申报列表", notes = "申报项目已申报列表") | ||||
@WebLog("申报项目已申报列表") | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
public PageVo<ProjectLibListItemVO> list(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> list(@ModelAttribute ProjectListReq req) { | ||||
return declaredProjectManage.projectLibList(req); | return declaredProjectManage.projectLibList(req); | ||||
} | } | ||||
@ApiOperation(value = "核心业务列表", notes = "核心业务列表") | @ApiOperation(value = "核心业务列表", notes = "核心业务列表") | ||||
@WebLog("核心业务列表") | |||||
@GetMapping("/core-biz") | @GetMapping("/core-biz") | ||||
public JSONObject bizList(@RequestParam(required = false) String businessName) { | public JSONObject bizList(@RequestParam(required = false) String businessName) { | ||||
JSONObject jsonObject = JSONObject.parseObject(DeclaredProjectContant.Biz.CORE_BIZ); | JSONObject jsonObject = JSONObject.parseObject(DeclaredProjectContant.Biz.CORE_BIZ); | ||||
@@ -74,14 +72,12 @@ public class DeclaredProjectController { | |||||
} | } | ||||
@ApiOperation(value = "申报项目草稿箱列表", notes = "申报项目草稿箱列表") | @ApiOperation(value = "申报项目草稿箱列表", notes = "申报项目草稿箱列表") | ||||
@WebLog("申报项目草稿箱列表") | |||||
@GetMapping("/draft") | @GetMapping("/draft") | ||||
public PageVo<ProjectDraftVO> draft(@ModelAttribute DeclaredProjectListParamDTO params) { | public PageVo<ProjectDraftVO> draft(@ModelAttribute DeclaredProjectListParamDTO params) { | ||||
return declaredProjectManage.pageDraft(params); | return declaredProjectManage.pageDraft(params); | ||||
} | } | ||||
@ApiOperation(value = "申报项目草稿箱详情", notes = "申报项目草稿箱详情") | @ApiOperation(value = "申报项目草稿箱详情", notes = "申报项目草稿箱详情") | ||||
@WebLog("申报项目草稿箱详情") | |||||
@GetMapping("/draft/{id}") | @GetMapping("/draft/{id}") | ||||
public ProjectDraftVO draft(@PathVariable(value = "id") Long id) { | public ProjectDraftVO draft(@PathVariable(value = "id") Long id) { | ||||
return declaredProjectManage.draftDatail(id); | return declaredProjectManage.draftDatail(id); | ||||
@@ -32,7 +32,6 @@ public class DelayedApplyController { | |||||
private final DelayedApplyManage delayedApplyManage; | private final DelayedApplyManage delayedApplyManage; | ||||
@ApiOperation(value = "过期的项目列表", notes = "过期的项目列表") | @ApiOperation(value = "过期的项目列表", notes = "过期的项目列表") | ||||
@WebLog("过期的项目列表") | |||||
@GetMapping("/project-list") | @GetMapping("/project-list") | ||||
public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | ||||
return delayedApplyManage.projectLibList(req); | return delayedApplyManage.projectLibList(req); | ||||
@@ -34,7 +34,6 @@ public class FinalAcceptanceController { | |||||
private final FinalAcceptanceManage finalAcceptanceManage; | private final FinalAcceptanceManage finalAcceptanceManage; | ||||
@ApiOperation(value = "待终验申报的项目列表", notes = "待终验申报的项目列表") | @ApiOperation(value = "待终验申报的项目列表", notes = "待终验申报的项目列表") | ||||
@WebLog("待终验申报的项目列表") | |||||
@GetMapping("/project-list") | @GetMapping("/project-list") | ||||
public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | ||||
return finalAcceptanceManage.projectLibList(req); | return finalAcceptanceManage.projectLibList(req); | ||||
@@ -48,7 +47,6 @@ public class FinalAcceptanceController { | |||||
} | } | ||||
@ApiOperation(value = "待终验申报的项目列表", notes = "待终验申报的项目列表") | @ApiOperation(value = "待终验申报的项目列表", notes = "待终验申报的项目列表") | ||||
@WebLog("待终验申报的项目列表") | |||||
@GetMapping("/detail/{projectId}") | @GetMapping("/detail/{projectId}") | ||||
public FinalAcceptanceVO detailByProjectId(@PathVariable Long projectId) { | public FinalAcceptanceVO detailByProjectId(@PathVariable Long projectId) { | ||||
return finalAcceptanceManage.detailByProjectId(projectId); | return finalAcceptanceManage.detailByProjectId(projectId); | ||||
@@ -35,7 +35,6 @@ public class PrequalificationDeclaredController { | |||||
private final PrequalificationDeclaredProjectManage prequalificationDeclaredProjectManage; | private final PrequalificationDeclaredProjectManage prequalificationDeclaredProjectManage; | ||||
@ApiOperation(value = "可预审申报项目列表", notes = "可预审申报项目列表") | @ApiOperation(value = "可预审申报项目列表", notes = "可预审申报项目列表") | ||||
@WebLog("可预审申报项目列表") | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute PrequalificationDeclaredListReq preReq) { | public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute PrequalificationDeclaredListReq preReq) { | ||||
return prequalificationDeclaredProjectManage.pageInfo(preReq); | return prequalificationDeclaredProjectManage.pageInfo(preReq); | ||||
@@ -36,7 +36,6 @@ public class ProjectAdjustmentController { | |||||
private final ProjectAdjustmentManage projectAdjustmentManage; | private final ProjectAdjustmentManage projectAdjustmentManage; | ||||
@ApiOperation(value = "可做项目内容调整的列表", notes = "可做项目内容调整的列表") | @ApiOperation(value = "可做项目内容调整的列表", notes = "可做项目内容调整的列表") | ||||
@WebLog("可做项目内容调整的列表") | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute AdjustmentListReq preReq) { | public PageVo<ProjectLibListItemVO> list(@Validated @ModelAttribute AdjustmentListReq preReq) { | ||||
return projectAdjustmentManage.projectLibList(preReq); | return projectAdjustmentManage.projectLibList(preReq); | ||||
@@ -35,14 +35,12 @@ public class PurchaseController { | |||||
private final ProjectAdjustmentManage projectAdjustmentManage; | private final ProjectAdjustmentManage projectAdjustmentManage; | ||||
@ApiOperation(value = "待采购结果备案列表", notes = "待采购结果备案列表") | @ApiOperation(value = "待采购结果备案列表", notes = "待采购结果备案列表") | ||||
@WebLog("待采购结果备案列表") | |||||
@GetMapping("/project-list") | @GetMapping("/project-list") | ||||
public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | public PageVo<ProjectLibListItemVO> projectlist(@ModelAttribute ProjectListReq req) { | ||||
return purchaseManage.projectLibList(req); | return purchaseManage.projectLibList(req); | ||||
} | } | ||||
@ApiOperation(value = "采购结果备案详情", notes = "采购结果备案详情") | @ApiOperation(value = "采购结果备案详情", notes = "采购结果备案详情") | ||||
@WebLog("采购结果备案详情") | |||||
@GetMapping("/detail/{projectId}") | @GetMapping("/detail/{projectId}") | ||||
public PurchaseVO detailByProjectId(@PathVariable Long projectId) { | public PurchaseVO detailByProjectId(@PathVariable Long projectId) { | ||||
return purchaseManage.detailByProjectId(projectId); | return purchaseManage.detailByProjectId(projectId); | ||||
@@ -39,7 +39,6 @@ public class ProjectLibController { | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
@ApiOperation("项目库列表") | @ApiOperation("项目库列表") | ||||
@WebLog("项目库列表") | |||||
public PageVo<ProjectLibListItemVO> projectLibList(ProjectListReq req) { | public PageVo<ProjectLibListItemVO> projectLibList(ProjectListReq req) { | ||||
UserFullInfoDTO user = userInfoHelper.getUserFullInfo(LoginUserUtil.getUserId()); | UserFullInfoDTO user = userInfoHelper.getUserFullInfo(LoginUserUtil.getUserId()); | ||||
return projectLibManage.projectLibListWithPermission(req,user); | return projectLibManage.projectLibListWithPermission(req,user); | ||||
@@ -47,14 +46,12 @@ public class ProjectLibController { | |||||
@GetMapping("/{id}") | @GetMapping("/{id}") | ||||
@ApiOperation("获取项目详情") | @ApiOperation("获取项目详情") | ||||
@WebLog("获取项目详情") | |||||
private ProjectDetailVO detail (@PathVariable Long id){ | private ProjectDetailVO detail (@PathVariable Long id){ | ||||
return projectLibManage.getProjectDetail(id); | return projectLibManage.getProjectDetail(id); | ||||
} | } | ||||
@GetMapping("/processSchedule/{projectId}") | @GetMapping("/processSchedule/{projectId}") | ||||
@ApiOperation("项目库申报项目当前进度详情") | @ApiOperation("项目库申报项目当前进度详情") | ||||
@WebLog("项目库申报项目当前进度详情") | |||||
private List<ProcessDetailVO> processScheduleDetail(@PathVariable("projectId") Long projectId){ | private List<ProcessDetailVO> processScheduleDetail(@PathVariable("projectId") Long projectId){ | ||||
return projectLibManage.processScheduleDetail(projectId); | return projectLibManage.processScheduleDetail(projectId); | ||||
} | } | ||||
@@ -28,7 +28,6 @@ public class FormController { | |||||
private final WflowFormsService formService; | private final WflowFormsService formService; | ||||
@ApiOperation(value = "获取系统表单", notes = "获取系统表单") | @ApiOperation(value = "获取系统表单", notes = "获取系统表单") | ||||
@WebLog("获取系统表单") | |||||
@GetMapping("/{regionCode}") | @GetMapping("/{regionCode}") | ||||
public WflowFormVo detail(@PathVariable(value = "regionCode") String regionCode) { | public WflowFormVo detail(@PathVariable(value = "regionCode") String regionCode) { | ||||
return formService.getFormByRegionCode(regionCode); | return formService.getFormByRegionCode(regionCode); | ||||
@@ -48,7 +48,6 @@ public class MenuController { | |||||
private final MenuManage menuManage; | private final MenuManage menuManage; | ||||
@ApiOperation("查询系统所有的菜单") | @ApiOperation("查询系统所有的菜单") | ||||
@WebLog("查询系统所有的菜单") | |||||
@GetMapping("/list") | @GetMapping("/list") | ||||
public List<Menu> allTree() { | public List<Menu> allTree() { | ||||
List<Menu> list = menuService.list(Wrappers.lambdaQuery(Menu.class).orderByAsc(Menu::getSort)); | List<Menu> list = menuService.list(Wrappers.lambdaQuery(Menu.class).orderByAsc(Menu::getSort)); | ||||
@@ -56,7 +55,6 @@ public class MenuController { | |||||
} | } | ||||
@ApiOperation("查询系统所有数据权限的菜单") | @ApiOperation("查询系统所有数据权限的菜单") | ||||
@WebLog("查询系统所有数据权限的菜单") | |||||
@GetMapping("/listByDataScope") | @GetMapping("/listByDataScope") | ||||
public List<Menu> allTreeByDataScope() { | public List<Menu> allTreeByDataScope() { | ||||
LambdaQueryWrapper<Menu> dsQuery = Wrappers.lambdaQuery(Menu.class) | LambdaQueryWrapper<Menu> dsQuery = Wrappers.lambdaQuery(Menu.class) | ||||