|
@@ -3,6 +3,7 @@ package com.its.vms.dao.mapper;
|
|
|
import com.its.vms.entity.NewIdSeq;
|
|
|
import com.its.vms.entity.TbEsbVmsShortMsg;
|
|
|
import com.its.vms.entity.TbEsbVmsShortMsgResult;
|
|
|
+import com.its.vms.esb.entity.EsbServer;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
@@ -13,6 +14,7 @@ public interface EsbVmsMapper {
|
|
|
|
|
|
NewIdSeq selectNextMsgId();
|
|
|
List<TbEsbVmsShortMsg> selectVmsShortMsg();
|
|
|
+ List<EsbServer> selectEsbServer();
|
|
|
int insertVmsShortMsg(@Param("obj") TbEsbVmsShortMsg obj);
|
|
|
int updateVmsShortMsgResult(@Param("obj") TbEsbVmsShortMsgResult obj);
|
|
|
|