|  |  |  | 
|---|
|  |  |  | import com.doumee.dao.business.vo.ApplyNoticeVO; | 
|---|
|  |  |  | import com.doumee.service.business.NoticesService; | 
|---|
|  |  |  | import io.swagger.annotations.Api; | 
|---|
|  |  |  | import io.swagger.annotations.ApiImplicitParam; | 
|---|
|  |  |  | import io.swagger.annotations.ApiImplicitParams; | 
|---|
|  |  |  | import io.swagger.annotations.ApiOperation; | 
|---|
|  |  |  | import org.apache.shiro.SecurityUtils; | 
|---|
|  |  |  | import org.apache.shiro.authz.annotation.RequiresPermissions; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("投保单关闭提醒") | 
|---|
|  |  |  | @GetMapping("/closeApplyNotice") | 
|---|
|  |  |  | @ApiImplicitParams({ | 
|---|
|  |  |  | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "type", value = "关闭类型:1=待签署提醒;6=续保提醒", required = true), | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | public ApiResponse closeApplyNotice(@RequestParam Integer type) { | 
|---|
|  |  |  | LoginUserInfo loginUserInfo = (LoginUserInfo) SecurityUtils.getSubject().getPrincipal(); | 
|---|
|  |  |  | noticesService.closeApplyNotice(loginUserInfo.getCompanyId(),type); | 
|---|