|
@ -1,6 +1,5 @@ |
|
|
package com.epmet.datareport.controller.screen; |
|
|
package com.epmet.datareport.controller.screen; |
|
|
|
|
|
|
|
|
import com.epmet.commons.extappauth.annotation.ExternalAppRequestAuth; |
|
|
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.datareport.service.screen.PartyMemberLeadService; |
|
|
import com.epmet.datareport.service.screen.PartyMemberLeadService; |
|
@ -33,7 +32,7 @@ public class PartyMemberLeadController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
* @date 2020/8/20 1:56 下午 |
|
|
* @date 2020/8/20 1:56 下午 |
|
|
*/ |
|
|
*/ |
|
|
@ExternalAppRequestAuth |
|
|
//@ExternalAppRequestAuth
|
|
|
@PostMapping("fineexample") |
|
|
@PostMapping("fineexample") |
|
|
public Result<FineExampleResultDTO> fineExample(@RequestBody FineExampleFormDTO fineExampleFormDTO){ |
|
|
public Result<FineExampleResultDTO> fineExample(@RequestBody FineExampleFormDTO fineExampleFormDTO){ |
|
|
ValidatorUtils.validateEntity(fineExampleFormDTO, FineExampleFormDTO.FineExample.class); |
|
|
ValidatorUtils.validateEntity(fineExampleFormDTO, FineExampleFormDTO.FineExample.class); |
|
@ -46,7 +45,7 @@ public class PartyMemberLeadController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
* @date 2020/8/20 2:35 下午 |
|
|
* @date 2020/8/20 2:35 下午 |
|
|
*/ |
|
|
*/ |
|
|
@ExternalAppRequestAuth |
|
|
//@ExternalAppRequestAuth
|
|
|
@PostMapping("contactmasslinechart") |
|
|
@PostMapping("contactmasslinechart") |
|
|
public Result<ContactMassLineChartResultDTO> contactMassLineChart(@RequestBody ContactMassLineChartFormDTO contactMassLineChartFormDTO){ |
|
|
public Result<ContactMassLineChartResultDTO> contactMassLineChart(@RequestBody ContactMassLineChartFormDTO contactMassLineChartFormDTO){ |
|
|
ValidatorUtils.validateEntity(contactMassLineChartFormDTO, ContactMassLineChartFormDTO.ContactMassLineChart.class); |
|
|
ValidatorUtils.validateEntity(contactMassLineChartFormDTO, ContactMassLineChartFormDTO.ContactMassLineChart.class); |
|
@ -59,7 +58,7 @@ public class PartyMemberLeadController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
* @date 2020/8/20 3:19 下午 |
|
|
* @date 2020/8/20 3:19 下午 |
|
|
*/ |
|
|
*/ |
|
|
@ExternalAppRequestAuth |
|
|
//@ExternalAppRequestAuth
|
|
|
@PostMapping("volunteerservice") |
|
|
@PostMapping("volunteerservice") |
|
|
public Result<VolunteerServiceResultDTO> volunteerService(@RequestBody VolunteerServiceFormDTO volunteerServiceFormDTO){ |
|
|
public Result<VolunteerServiceResultDTO> volunteerService(@RequestBody VolunteerServiceFormDTO volunteerServiceFormDTO){ |
|
|
ValidatorUtils.validateEntity(volunteerServiceFormDTO, VolunteerServiceFormDTO.VolunteerService.class); |
|
|
ValidatorUtils.validateEntity(volunteerServiceFormDTO, VolunteerServiceFormDTO.VolunteerService.class); |
|
@ -74,7 +73,7 @@ public class PartyMemberLeadController { |
|
|
* @author wangc |
|
|
* @author wangc |
|
|
* @date 2020.08.21 11:05 |
|
|
* @date 2020.08.21 11:05 |
|
|
**/ |
|
|
**/ |
|
|
@ExternalAppRequestAuth |
|
|
//@ExternalAppRequestAuth
|
|
|
@PostMapping("advancedbranchrank") |
|
|
@PostMapping("advancedbranchrank") |
|
|
Result<List<AdvanceBranchRankResultDTO>> advancedBranchRank(@RequestBody AgencyAndNumFormDTO param){ |
|
|
Result<List<AdvanceBranchRankResultDTO>> advancedBranchRank(@RequestBody AgencyAndNumFormDTO param){ |
|
|
ValidatorUtils.validateEntity(param, AgencyFormDTO.CommonAgencyIdGroup.class); |
|
|
ValidatorUtils.validateEntity(param, AgencyFormDTO.CommonAgencyIdGroup.class); |
|
@ -89,7 +88,7 @@ public class PartyMemberLeadController { |
|
|
* @author wangc |
|
|
* @author wangc |
|
|
* @date 2020.08.21 14:22 |
|
|
* @date 2020.08.21 14:22 |
|
|
**/ |
|
|
**/ |
|
|
@ExternalAppRequestAuth |
|
|
//@ExternalAppRequestAuth
|
|
|
@PostMapping("advancedpartymemberrank") |
|
|
@PostMapping("advancedpartymemberrank") |
|
|
Result<List<PartyUserPointResultDTO>> advancedPartymemberRank(@RequestBody AgencyAndNumFormDTO param){ |
|
|
Result<List<PartyUserPointResultDTO>> advancedPartymemberRank(@RequestBody AgencyAndNumFormDTO param){ |
|
|
ValidatorUtils.validateEntity(param, AgencyFormDTO.CommonAgencyIdGroup.class); |
|
|
ValidatorUtils.validateEntity(param, AgencyFormDTO.CommonAgencyIdGroup.class); |
|
|