|
@@ -1,38 +0,0 @@
|
|
-package com.persagy.bdtp.adm.controller;
|
|
|
|
-
|
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
-import com.persagy.bdtp.adm.common.AdmMessageConst;
|
|
|
|
-import com.persagy.bdtp.adm.common.AdmRequest;
|
|
|
|
-import com.persagy.bdtp.adm.common.AdmResult;
|
|
|
|
-import com.persagy.bdtp.adm.dao.AdmObjectMapper;
|
|
|
|
-import com.persagy.bdtp.adm.entity.AdmObject;
|
|
|
|
-import com.persagy.bdtp.adm.entity.D2mMessage;
|
|
|
|
-import com.persagy.bdtp.adm.service.ISyncModel;
|
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
-
|
|
|
|
-import java.util.Arrays;
|
|
|
|
-
|
|
|
|
-@RestController
|
|
|
|
-@RequestMapping("/test")
|
|
|
|
-public class TestController {
|
|
|
|
-
|
|
|
|
- @Autowired
|
|
|
|
- private ISyncModel syncModel;
|
|
|
|
-
|
|
|
|
- @Autowired
|
|
|
|
- private AdmObjectMapper admObjectMapper;
|
|
|
|
-
|
|
|
|
- @RequestMapping("/testMq")
|
|
|
|
- public AdmResult<Object> testMq(@RequestBody AdmRequest req){
|
|
|
|
- AdmObject obj = admObjectMapper.selectOne(new QueryWrapper<AdmObject>().eq("id", "Eq00022200023a8d5a59a7fb49a89dfa6ae746518bc2"));
|
|
|
|
- obj.getInfos().put("comp_type", "FFFAAL-声光报警器");
|
|
|
|
- D2mMessage msg = new D2mMessage();
|
|
|
|
- msg.setAddItems(Arrays.asList(obj));
|
|
|
|
- syncModel.sendMessageToModel(msg);
|
|
|
|
- return AdmResult.success(null);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-}
|
|
|