|
|
@@ -19,6 +19,7 @@ import com.goafanti.core.shiro.token.TokenManager;
|
|
|
import com.goafanti.core.websocket.SystemWebSocketHandler;
|
|
|
import com.goafanti.expenseAccount.service.ExpenseAccountService;
|
|
|
import com.goafanti.order.enums.OrderImgEnums;
|
|
|
+import com.goafanti.order.service.OrderNewService;
|
|
|
import com.goafanti.user.service.UserService;
|
|
|
import org.apache.commons.collections4.map.HashedMap;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
@@ -91,6 +92,8 @@ public class PublicController extends CertifyApiController {
|
|
|
|
|
|
@Autowired
|
|
|
private ExpenseAccountService expenseAccountService;
|
|
|
+ @Autowired
|
|
|
+ private OrderNewService orderNewService;
|
|
|
|
|
|
@Value(value = "${patentTemplate}")
|
|
|
private String patentTemplate = null;
|
|
|
@@ -947,12 +950,11 @@ public class PublicController extends CertifyApiController {
|
|
|
res.data(adminService.pushStatistics());
|
|
|
return res;
|
|
|
}
|
|
|
- @RequestMapping(value = "/pushClockIn",method = RequestMethod.POST)
|
|
|
+ @RequestMapping(value = "/pushDunNodeContent",method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public Result pushClockIn ( String clokInTime, String userId){
|
|
|
+ public Result pushDunNodeContent(){
|
|
|
Result res =new Result();
|
|
|
- System.out.println("=====================================================》 clokInTime="+clokInTime);
|
|
|
- System.out.println("=====================================================》 userId="+userId);
|
|
|
+ orderNewService.pushDunNodeContent();
|
|
|
res.data("ok");
|
|
|
return res;
|
|
|
}
|