|
@@ -9,13 +9,14 @@ import com.fs.common.core.page.TableDataInfo;
|
|
|
import com.fs.common.enums.BusinessType;
|
|
|
import com.fs.common.utils.ServletUtils;
|
|
|
import com.fs.common.utils.poi.ExcelUtil;
|
|
|
-import com.fs.course.mapper.FsUserCourseMapper;
|
|
|
-import com.fs.course.mapper.FsUserCourseVideoMapper;
|
|
|
import com.fs.core.security.LoginUser;
|
|
|
import com.fs.core.web.service.TokenService;
|
|
|
+import com.fs.course.mapper.FsUserCourseMapper;
|
|
|
+import com.fs.course.mapper.FsUserCourseVideoMapper;
|
|
|
import com.fs.his.vo.OptionsVO;
|
|
|
import com.fs.qw.domain.QwSopUpdateStatus;
|
|
|
import com.fs.qw.service.IQwUserService;
|
|
|
+import com.fs.qw.vo.QwOptionsVO;
|
|
|
import com.fs.sop.domain.QwSop;
|
|
|
import com.fs.sop.params.QwSopAutoTime;
|
|
|
import com.fs.sop.params.QwSopEditQwUserParam;
|
|
@@ -27,6 +28,7 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
+import java.util.Calendar;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -157,7 +159,7 @@ public class QwSopController extends BaseController
|
|
|
* 修改企微sop
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('qw:sop:edit')")
|
|
|
- @Log(title = "企微sop", businessType = BusinessType.UPDATE)
|
|
|
+ @Log(title = "修改企微sop", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public R edit(@RequestBody QwSop qwSop)
|
|
|
{
|
|
@@ -170,6 +172,7 @@ public class QwSopController extends BaseController
|
|
|
*/
|
|
|
@Log(title = "暂停企微sop", businessType = BusinessType.UPDATE)
|
|
|
@PostMapping("/updateSopStatus")
|
|
|
+ @RepeatSubmit
|
|
|
public R updateSopStatus(@RequestBody QwSopUpdateStatus param)
|
|
|
{
|
|
|
return qwSopService.updateSopStatus(param);
|
|
@@ -211,6 +214,7 @@ public class QwSopController extends BaseController
|
|
|
* 修改sop员工
|
|
|
*/
|
|
|
@PostMapping( "/updateSopQwUser")
|
|
|
+ @Log(title = "修改sop员工", businessType = BusinessType.UPDATE)
|
|
|
@PreAuthorize("@ss.hasPermi('qw:sop:updateSopQwUser')")
|
|
|
public R updateSopQwUser(@RequestBody QwSopEditQwUserParam param)
|
|
|
{
|