|
@@ -136,10 +136,16 @@ public class AFT001Service extends AFT001BaseModel implements ExecProcessFlow {
|
|
|
){
|
|
|
throw new BusinessException("EB4000013");
|
|
|
}
|
|
|
- msg.setScaleFactor(this.getA_aft001().getScaleFactor());
|
|
|
- msg.setDataU(this.getA_aft001().getDataU());
|
|
|
- msg.setDataV(this.getA_aft001().getDataV());
|
|
|
- msg.setDataW(this.getA_aft001().getDataW());
|
|
|
+ JSONObject obj = new JSONObject();
|
|
|
+ obj.put("scaleFactor",this.getA_aft001().getScaleFactor());
|
|
|
+ obj.put("dataU",this.getA_aft001().getDataU());
|
|
|
+ obj.put("dataV",this.getA_aft001().getDataV());
|
|
|
+ obj.put("dataW",this.getA_aft001().getDataW());
|
|
|
+ msg.setParamJson(obj.toString());
|
|
|
+// msg.setScaleFactor(this.getA_aft001().getScaleFactor());
|
|
|
+// msg.setDataU(this.getA_aft001().getDataU());
|
|
|
+// msg.setDataV(this.getA_aft001().getDataV());
|
|
|
+// msg.setDataW(this.getA_aft001().getDataW());
|
|
|
}
|
|
|
System.out.println(XiJsonUtil.objectToJson(msg));
|
|
|
MFMqUtils.get(CaeMQ.class).sendCaein(XiJsonUtil.objectToJson(msg));
|