|
@@ -16,6 +16,7 @@ import com.zhongzheng.common.core.domain.entity.SysRole;
|
|
|
import com.zhongzheng.common.core.redis.RedisCache;
|
|
|
import com.zhongzheng.common.utils.SecurityUtils;
|
|
|
import com.zhongzheng.common.utils.ServletUtils;
|
|
|
+import com.zhongzheng.common.utils.ToolsUtils;
|
|
|
import com.zhongzheng.modules.base.bo.UserProfileQueryBo;
|
|
|
import com.zhongzheng.modules.base.vo.UserProfileExportGaiVo;
|
|
|
import com.zhongzheng.modules.grade.bo.*;
|
|
@@ -607,4 +608,13 @@ public class ClassGradeController extends BaseController {
|
|
|
public AjaxResult<Void> OpenQdyAccount() {
|
|
|
return toAjax(iClassGradeService.sendCode() ? 1 : 0);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("二审打回重审")
|
|
|
+ @PostMapping("/confirm/rollbackPeriod")
|
|
|
+ public AjaxResult<Void> confirmRollbackPeriod(@RequestBody UserPeriodEditBo bo)
|
|
|
+ {
|
|
|
+ bo.setRollBackPlat(1);
|
|
|
+ iUserPeriodService.confirmRollbackPeriod(bo);
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
}
|