作者 zhangFan

analysis_imf for station version 1.0

package com.sy.bwAnalysis;
import com.sy.bwAssist.CommandInfo;
import com.sy.bwAssist.Message;
import com.sy.bwAssist.Meta;
import com.sy.model.commandInfo;
public class CommandInfoAnalysis {
public commandInfo toJavaBean(Message msg) {
commandInfo bean = new commandInfo();
CommandInfo info = msg.getComInfo();
Meta meta = msg.getMeta();
/* bean.setSender(meta.getSender());
bean.setReceiver(meta.getReceiver());
bean.setSeqn(meta.getSeqn());
bean.setSendtime(meta.getSendTime());
bean.setType(meta.getType());
bean.setSmtype(meta.getSmType());*/
bean.setAreaId(info.getAREA_ID());
bean.setChnlNo(info.getCHNL_NO());
bean.setiEType(info.getI_E_TYPE());
bean.setSeqNo(info.getSEQ_NO());
bean.setExecuteResult(info.getExecuteResult());
bean.setEsealIcNo(info.getSeal().getEsealIcNo());
bean.setEsealId(info.getSeal().getEsealId());
bean.setEsealStatecode(info.getSeal().getEsealStateCode());
bean.setEsealStatehint(info.getSeal().getEsealStateHint());
bean.setAction(info.getMessageInfo().getAction());
bean.setSource(info.getMessageInfo().getSource());
bean.setEsealKey(info.getCtrlChanging().getEsealKey());
bean.setActionModel(info.getCtrlChanging().getActionModel());
bean.setActionModel(info.getCtrlChanging().getActionModel());
bean.setOpenTimes(info.getSeal().getOperTimes());
bean.setOpHint(info.getOpHint());
bean.setChangeCause(info.getCtrlChanging().getChanceCause());
bean.setChangeTime(info.getCtrlChanging().getChanceTime());
bean.setOperName(info.getCtrlChanging().getOperName());
bean.setOldesealId(info.getCtrlChanging().getOldesealId());
bean.setNewesealId(info.getCtrlChanging().getNewesealId());
return bean;
}
}
... ...
package com.sy.bwAssist;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import org.springframework.stereotype.Component;
@Component
public class CommandInfo {
@XStreamAsAttribute
private String AREA_ID;
@XStreamAsAttribute
private String CHNL_NO;
@XStreamAsAttribute
private String I_E_TYPE;
@XStreamAsAttribute
private String SEQ_NO;
@XStreamAlias("EXECUTE_RESULT")
private String executeResult;
@XStreamAlias("MESSAGE_INFO ")
private MessageInfo messageInfo;
@XStreamAlias("CTRL_CHANGING")
private CtrlChanging ctrlChanging;
@XStreamAlias("OP_HINT")
private String opHint;
@XStreamAlias("SEAL")
private Seal seal;
public String getAREA_ID() {
return AREA_ID;
}
public void setAREA_ID(String aREA_ID) {
AREA_ID = aREA_ID;
}
public String getCHNL_NO() {
return CHNL_NO;
}
public void setCHNL_NO(String cHNL_NO) {
CHNL_NO = cHNL_NO;
}
public String getI_E_TYPE() {
return I_E_TYPE;
}
public void setI_E_TYPE(String i_E_TYPE) {
I_E_TYPE = i_E_TYPE;
}
public String getSEQ_NO() {
return SEQ_NO;
}
public void setSEQ_NO(String sEQ_NO) {
SEQ_NO = sEQ_NO;
}
public Seal getSeal() {
return seal;
}
public void setSeal(Seal seal) {
this.seal = seal;
}
public String getExecuteResult() {
return executeResult;
}
public void setExecuteResult(String executeResult) {
this.executeResult = executeResult;
}
public MessageInfo getMessageInfo() {
return messageInfo;
}
public void setMessageInfo(MessageInfo messageInfo) {
this.messageInfo = messageInfo;
}
public CtrlChanging getCtrlChanging() {
return ctrlChanging;
}
public void setCtrlChanging(CtrlChanging ctrlChanging) {
this.ctrlChanging = ctrlChanging;
}
public String getOpHint() {
return opHint;
}
public void setOpHint(String opHint) {
this.opHint = opHint;
}
}
... ...
package com.sy.bwAssist;
import com.sy.utils.DateTimeConverter;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import java.util.Date;
@XStreamAlias("CTRL_CHANGING")
public class CtrlChanging {
@XStreamAlias("OLDESEAL_ID")
private String oldesealId;
@XStreamAlias("NEWESEAL_ID")
private String newesealId;
@XStreamAlias("ESEAL_KEY")
private String esealKey;
@XStreamAlias("ACTION_MODEL")
private String actionModel;
@XStreamAlias("CHANGE_CAUSE")
private String chanceCause;
@XStreamAlias("CHANGE_TIME")
@XStreamConverter(DateTimeConverter.class)
private Date chanceTime;
@XStreamAlias("OPER_NAME")
private String operName;
public String getOldesealId() {
return oldesealId;
}
public void setOldesealId(String oldesealId) {
this.oldesealId = oldesealId;
}
public String getNewesealId() {
return newesealId;
}
public void setNewesealId(String newesealId) {
this.newesealId = newesealId;
}
public String getEsealKey() {
return esealKey;
}
public void setEsealKey(String esealKey) {
this.esealKey = esealKey;
}
public String getActionModel() {
return actionModel;
}
public void setActionModel(String actionModel) {
this.actionModel = actionModel;
}
public String getChanceCause() {
return chanceCause;
}
public void setChanceCause(String chanceCause) {
this.chanceCause = chanceCause;
}
public Date getChanceTime() {
return chanceTime;
}
public void setChanceTime(Date chanceTime) {
this.chanceTime = chanceTime;
}
public String getOperName() {
return operName;
}
public void setOperName(String operName) {
this.operName = operName;
}
}
... ...
... ... @@ -13,6 +13,9 @@ public class Message {
@XStreamAlias("GATHER_INFO")
private GatherInfo info;
@XStreamAlias("COMMAND_INFO")
private CommandInfo ComInfo;
@XStreamAlias("DTC_Message")
private DTC_Message message;
... ... @@ -40,9 +43,13 @@ public class Message {
this.info = info;
}
public CommandInfo getComInfo() {
return ComInfo;
}
public void setComInfo(CommandInfo comInfo) {
ComInfo = comInfo;
}
}
... ...
package com.sy.bwAssist;
import com.thoughtworks.xstream.annotations.XStreamAlias;
@XStreamAlias("MESSAGR_INFO")
public class MessageInfo {
@XStreamAlias("SOURCE")
private String source;
@XStreamAlias("ACTION")
private String action;
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
}
... ...
package com.sy.bwAssist;
import com.sy.utils.NumberConverter;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
@XStreamAlias("SEAL")
public class Seal {
... ... @@ -11,6 +13,18 @@ public class Seal {
@XStreamAlias("ESEAL_IC_NO")
private String EsealIcNo;
@XStreamAlias("OPEN_TIMES")
@XStreamConverter(NumberConverter.class)
private Integer operTimes;
@XStreamAlias("ESEAL_STATEHINT")
private String EsealStateHint;
@XStreamAlias("ESEAL_STATECODE")
private String EsealStateCode;
public String getEsealId() {
return EsealId;
}
... ... @@ -26,7 +40,28 @@ public class Seal {
public void setEsealIcNo(String esealIcNo) {
EsealIcNo = esealIcNo;
}
public Integer getOperTimes() {
return operTimes;
}
public void setOperTimes(Integer operTimes) {
this.operTimes = operTimes;
}
public String getEsealStateHint() {
return EsealStateHint;
}
public void setEsealStateHint(String esealStateHint) {
EsealStateHint = esealStateHint;
}
public String getEsealStateCode() {
return EsealStateCode;
}
public void setEsealStateCode(String esealStateCode) {
EsealStateCode = esealStateCode;
}
}
... ...
... ... @@ -10,12 +10,7 @@ import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.util.List;
/**
* @author zhangfan
* @web www.sy.com
* @company 郑州商友科技有限公司
* @time 2018-11-27 16:12
*/
@Component
public class AnalysisRoute {
... ...
package com.sy.mapper;
import com.sy.model.commandInfo;
public interface commandInfoMapper {
int insert(commandInfo info);
int insertSelective(commandInfo record);
}
\ No newline at end of file
... ...
package com.sy.model;
import java.util.Date;
public class commandInfo {
private String areaId;
private String chnlNo;
private String iEType;
private String seqNo;
private String executeResult;
private String source;
private String action;
private Integer openTimes;
private String esealIcNo;
private String esealId;
private String esealStatehint;
private String esealStatecode;
private String oldesealId;
private String newesealId;
private String esealKey;
private String actionModel;
private String changeCause;
private Date changeTime;
private String operName;
private String opHint;
public String getAreaId() {
return areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId == null ? null : areaId.trim();
}
public String getChnlNo() {
return chnlNo;
}
public void setChnlNo(String chnlNo) {
this.chnlNo = chnlNo == null ? null : chnlNo.trim();
}
public String getiEType() {
return iEType;
}
public void setiEType(String iEType) {
this.iEType = iEType == null ? null : iEType.trim();
}
public String getSeqNo() {
return seqNo;
}
public void setSeqNo(String seqNo) {
this.seqNo = seqNo == null ? null : seqNo.trim();
}
public String getExecuteResult() {
return executeResult;
}
public void setExecuteResult(String executeResult) {
this.executeResult = executeResult == null ? null : executeResult.trim();
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source == null ? null : source.trim();
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action == null ? null : action.trim();
}
public Integer getOpenTimes() {
return openTimes;
}
public void setOpenTimes(Integer openTimes) {
this.openTimes = openTimes;
}
public String getEsealIcNo() {
return esealIcNo;
}
public void setEsealIcNo(String esealIcNo) {
this.esealIcNo = esealIcNo == null ? null : esealIcNo.trim();
}
public String getEsealId() {
return esealId;
}
public void setEsealId(String esealId) {
this.esealId = esealId == null ? null : esealId.trim();
}
public String getEsealStatehint() {
return esealStatehint;
}
public void setEsealStatehint(String esealStatehint) {
this.esealStatehint = esealStatehint == null ? null : esealStatehint.trim();
}
public String getEsealStatecode() {
return esealStatecode;
}
public void setEsealStatecode(String esealStatecode) {
this.esealStatecode = esealStatecode == null ? null : esealStatecode.trim();
}
public String getOldesealId() {
return oldesealId;
}
public void setOldesealId(String oldesealId) {
this.oldesealId = oldesealId == null ? null : oldesealId.trim();
}
public String getNewesealI() {
return newesealId;
}
public void setNewesealId(String ewesealId) {
this.newesealId = ewesealId == null ? null : ewesealId.trim();
}
public String getEsealKey() {
return esealKey;
}
public void setEsealKey(String esealKey) {
this.esealKey = esealKey == null ? null : esealKey.trim();
}
public String getActionModel() {
return actionModel;
}
public void setActionModel(String actionModel) {
this.actionModel = actionModel == null ? null : actionModel.trim();
}
public String getChangeCause() {
return changeCause;
}
public void setChangeCause(String changeCause) {
this.changeCause = changeCause == null ? null : changeCause.trim();
}
public Date getChangeTime() {
return changeTime;
}
public void setChangeTime(Date changeTime) {
this.changeTime = changeTime;
}
public String getOperName() {
return operName;
}
public void setOperName(String operName) {
this.operName = operName == null ? null : operName.trim();
}
public String getOpHint() {
return opHint;
}
public void setOpHint(String opHint) {
this.opHint = opHint == null ? null : opHint.trim();
}
}
\ No newline at end of file
... ...
package com.sy.service;
import com.sy.model.commandInfo;
public interface CommandInfoService {
int save(commandInfo info);
}
... ...
package com.sy.service.impl;
import com.sy.mapper.commandInfoMapper;
import com.sy.model.commandInfo;
import com.sy.service.CommandInfoService;
import org.springframework.beans.factory.annotation.Autowired;
public class CommandInfoImpl implements CommandInfoService {
@Autowired
private commandInfoMapper infoMapper;
@Override
public int save(commandInfo info) {
int row = 0;
try {
row =infoMapper.insert(info);
}catch (Exception e){
e.printStackTrace();
}
return row;
}
}
... ...
... ... @@ -62,5 +62,7 @@
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
<table tableName="vehicle_mainifist_relation" domainObjectName="vehicle_mainifist_relation" enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
<table tableName="commandInfo" domainObjectName="commandInfo" enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sy.mapper.commandInfoMapper">
<resultMap id="BaseResultMap" type="com.sy.model.commandInfo">
<result column="AREA_ID" jdbcType="VARCHAR" property="areaId" />
<result column="CHNL_NO" jdbcType="VARCHAR" property="chnlNo" />
<result column="I_E_TYPE" jdbcType="VARCHAR" property="iEType" />
<result column="SEQ_NO" jdbcType="VARCHAR" property="seqNo" />
<result column="EXECUTE_RESULT" jdbcType="VARCHAR" property="executeResult" />
<result column="SOURCE" jdbcType="VARCHAR" property="source" />
<result column="ACTION" jdbcType="VARCHAR" property="action" />
<result column="OPEN_TIMES" jdbcType="DECIMAL" property="openTimes" />
<result column="ESEAL_IC_NO" jdbcType="VARCHAR" property="esealIcNo" />
<result column="ESEAL_ID" jdbcType="VARCHAR" property="esealId" />
<result column="ESEAL_STATEHINT" jdbcType="VARCHAR" property="esealStatehint" />
<result column="ESEAL_STATECODE" jdbcType="VARCHAR" property="esealStatecode" />
<result column="OLDESEAL_ID" jdbcType="VARCHAR" property="oldesealId" />
<result column="NEWESEAL_ID" jdbcType="VARCHAR" property="newesealId" />
<result column="ESEAL_KEY" jdbcType="VARCHAR" property="esealKey" />
<result column="ACTION_MODEL" jdbcType="VARCHAR" property="actionModel" />
<result column="CHANGE_CAUSE" jdbcType="VARCHAR" property="changeCause" />
<result column="CHANGE_TIME" jdbcType="TIMESTAMP" property="changeTime" />
<result column="OPER_NAME" jdbcType="VARCHAR" property="operName" />
<result column="OP_HINT" jdbcType="VARCHAR" property="opHint" />
</resultMap>
<insert id="insert" parameterType="com.sy.model.commandInfo">
insert into commandinfo (AREA_ID, CHNL_NO, I_E_TYPE,
SEQ_NO, EXECUTE_RESULT, SOURCE,
ACTION, OPEN_TIMES, ESEAL_IC_NO,
ESEAL_ID, ESEAL_STATEHINT, ESEAL_STATECODE,
OLDESEAL_ID, NEWESEAL_ID, ESEAL_KEY,
ACTION_MODEL, CHANGE_CAUSE, CHANGE_TIME,
OPER_NAME, OP_HINT)
values (#{areaId,jdbcType=VARCHAR}, #{chnlNo,jdbcType=VARCHAR}, #{iEType,jdbcType=VARCHAR},
#{seqNo,jdbcType=VARCHAR}, #{executeResult,jdbcType=VARCHAR}, #{source,jdbcType=VARCHAR},
#{action,jdbcType=VARCHAR}, #{openTimes,jdbcType=DECIMAL}, #{esealIcNo,jdbcType=VARCHAR},
#{esealId,jdbcType=VARCHAR}, #{esealStatehint,jdbcType=VARCHAR}, #{esealStatecode,jdbcType=VARCHAR},
#{oldesealId,jdbcType=VARCHAR}, #{newesealId,jdbcType=VARCHAR}, #{esealKey,jdbcType=VARCHAR},
#{actionModel,jdbcType=VARCHAR}, #{changeCause,jdbcType=VARCHAR}, #{changeTime,jdbcType=TIMESTAMP},
#{operName,jdbcType=VARCHAR}, #{opHint,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.sy.model.commandInfo">
insert into commandinfo
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">
AREA_ID,
</if>
<if test="chnlNo != null">
CHNL_NO,
</if>
<if test="iEType != null">
I_E_TYPE,
</if>
<if test="seqNo != null">
SEQ_NO,
</if>
<if test="executeResult != null">
EXECUTE_RESULT,
</if>
<if test="source != null">
SOURCE,
</if>
<if test="action != null">
ACTION,
</if>
<if test="openTimes != null">
OPEN_TIMES,
</if>
<if test="esealIcNo != null">
ESEAL_IC_NO,
</if>
<if test="esealId != null">
ESEAL_ID,
</if>
<if test="esealStatehint != null">
ESEAL_STATEHINT,
</if>
<if test="esealStatecode != null">
ESEAL_STATECODE,
</if>
<if test="oldesealId != null">
OLDESEAL_ID,
</if>
<if test="newesealId != null">
NEWESEAL_ID,
</if>
<if test="esealKey != null">
ESEAL_KEY,
</if>
<if test="actionModel != null">
ACTION_MODEL,
</if>
<if test="changeCause != null">
CHANGE_CAUSE,
</if>
<if test="changeTime != null">
CHANGE_TIME,
</if>
<if test="operName != null">
OPER_NAME,
</if>
<if test="opHint != null">
OP_HINT,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">
#{areaId,jdbcType=VARCHAR},
</if>
<if test="chnlNo != null">
#{chnlNo,jdbcType=VARCHAR},
</if>
<if test="iEType != null">
#{iEType,jdbcType=VARCHAR},
</if>
<if test="seqNo != null">
#{seqNo,jdbcType=VARCHAR},
</if>
<if test="executeResult != null">
#{executeResult,jdbcType=VARCHAR},
</if>
<if test="source != null">
#{source,jdbcType=VARCHAR},
</if>
<if test="action != null">
#{action,jdbcType=VARCHAR},
</if>
<if test="openTimes != null">
#{openTimes,jdbcType=DECIMAL},
</if>
<if test="esealIcNo != null">
#{esealIcNo,jdbcType=VARCHAR},
</if>
<if test="esealId != null">
#{esealId,jdbcType=VARCHAR},
</if>
<if test="esealStatehint != null">
#{esealStatehint,jdbcType=VARCHAR},
</if>
<if test="esealStatecode != null">
#{esealStatecode,jdbcType=VARCHAR},
</if>
<if test="oldesealId != null">
#{oldesealId,jdbcType=VARCHAR},
</if>
<if test="newesealId != null">
#{newesealId,jdbcType=VARCHAR},
</if>
<if test="esealKey != null">
#{esealKey,jdbcType=VARCHAR},
</if>
<if test="actionModel != null">
#{actionModel,jdbcType=VARCHAR},
</if>
<if test="changeCause != null">
#{changeCause,jdbcType=VARCHAR},
</if>
<if test="changeTime != null">
#{changeTime,jdbcType=TIMESTAMP},
</if>
<if test="operName != null">
#{operName,jdbcType=VARCHAR},
</if>
<if test="opHint != null">
#{opHint,jdbcType=VARCHAR},
</if>
</trim>
</insert>
</mapper>
\ No newline at end of file
... ...