|
|
|
@ -45,4 +45,9 @@ public class AppActController {
|
|
|
|
|
public void updateAppAct(@ModelAttribute(CommonConsts.MANAGER_STATUS) JSONObject manager, @PathVariable String act_id,@RequestBody AppActBean appActBean){
|
|
|
|
|
appActService.updateAct(manager,act_id,appActBean);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ManagerMapping(value = "/published/{act_id}",method = RequestMethod.PUT,role = ManagerRole.SITE_MANAGER)
|
|
|
|
|
public void publishedAppAct(@ModelAttribute(CommonConsts.MANAGER_STATUS) JSONObject manager, @PathVariable String act_id,@RequestBody boolean is_valid){
|
|
|
|
|
appActService.published(manager,act_id,is_valid);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|