Browse Source

Merge branch 'test' into test2

anderx 1 year ago
parent
commit
f555d1e64e

+ 9 - 0
src/main/java/com/goafanti/common/controller/PublicController.java

@@ -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;
+	}
 }