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