|
@@ -42,11 +42,27 @@ public class TestController {
|
|
private String b;
|
|
private String b;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 标准化所有周工时
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/test/api/standardAllWeekMemberHour")
|
|
|
|
+ public void standardAllWeekMemberHour(){
|
|
|
|
+ logStandardService.standardAllWeekMemberHour();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 根据用户Id标准化日工时
|
|
|
|
+ * @param userId 用户Id
|
|
|
|
+ */
|
|
@GetMapping("/test/api/standardSelfWorkHourByUserId")
|
|
@GetMapping("/test/api/standardSelfWorkHourByUserId")
|
|
public void standardSelfWorkHourByUserId(@RequestParam("userId") String userId) {
|
|
public void standardSelfWorkHourByUserId(@RequestParam("userId") String userId) {
|
|
logStandardService.standardSelfWorkHourByUserId(userId);
|
|
logStandardService.standardSelfWorkHourByUserId(userId);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 根据用户Id标准化周工时
|
|
|
|
+ * @param userId 用户Id
|
|
|
|
+ */
|
|
@GetMapping("/test/api/standardWeekMemberHourByUserId")
|
|
@GetMapping("/test/api/standardWeekMemberHourByUserId")
|
|
public void standardWeekMemberHourByUserId(@RequestParam("userId") String userId) {
|
|
public void standardWeekMemberHourByUserId(@RequestParam("userId") String userId) {
|
|
logStandardService.standardWeekMemberHourByUserId(userId);
|
|
logStandardService.standardWeekMemberHourByUserId(userId);
|