|
|
@@ -947,4 +947,12 @@ public class PublicController extends CertifyApiController {
|
|
|
res.data(adminService.pushStatistics());
|
|
|
return res;
|
|
|
}
|
|
|
+ @RequestMapping(value = "/pushClockIn",method = RequestMethod.POST)
|
|
|
+ public Result pushClockIn (@RequestParam String clokInTime,@RequestParam String userId){
|
|
|
+ Result res =new Result();
|
|
|
+ System.out.println("=====================================================》 clokInTime="+clokInTime);
|
|
|
+ System.out.println("=====================================================》 userId="+userId);
|
|
|
+ res.data("ok");
|
|
|
+ return res;
|
|
|
+ }
|
|
|
}
|