mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-12 02:54:59 +08:00
1、测试代码,开源用户尽量不要使用; 2、包含Kafka-HA的相关功能; 3、并非基于2.6.0拉的分支,是基于master分支的 commit-id:462303fca0拉的2.8.0_e的分支。出现这个情况的原因是v2.6.0的代码并不是最新的,2.x最新的代码是462303fca0这个commit对应的代码;
20 lines
1.2 KiB
XML
20 lines
1.2 KiB
XML
<?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.xiaojukeji.kafka.manager.dao.ha.HaASSwitchSubJobDao">
|
|
<resultMap id="HaASSwitchSubJobMap" type="com.xiaojukeji.kafka.manager.common.entity.pojo.ha.HaASSwitchSubJobDO">
|
|
<id column="id" property="id" />
|
|
<result column="create_time" property="createTime" />
|
|
<result column="modify_time" property="modifyTime" />
|
|
|
|
<result column="job_id" property="jobId" />
|
|
<result column="active_cluster_phy_id" property="activeClusterPhyId" />
|
|
<result column="active_res_name" property="activeResName" />
|
|
<result column="standby_cluster_phy_id" property="standbyClusterPhyId" />
|
|
<result column="standby_res_name" property="standbyResName" />
|
|
<result column="res_type" property="resType" />
|
|
<result column="job_status" property="jobStatus" />
|
|
<result column="extend_data" property="extendData" />
|
|
</resultMap>
|
|
</mapper>
|