12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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.zhyc.xps.aqpt.mapper.SnapshotEventMapper">
- <resultMap id="BaseResultMap" type="com.zhyc.xps.aqpt.entity.SnapshotEvent">
- <result column="oc_id" property="ocId" jdbcType="BIGINT" />
- <result column="snapshot_id" property="snapshotId" jdbcType="BIGINT" />
- <result column="event_id" property="eventId" jdbcType="BIGINT" />
- <result column="group_id" property="groupId" jdbcType="BIGINT" />
- <result column="position_id" property="positionId" jdbcType="BIGINT" />
- <result column="account_id" property="accountId" jdbcType="BIGINT" />
- <result column="event_time" property="eventTime" jdbcType="DATE" />
- <result column="event_code" property="eventCode" jdbcType="VARCHAR" />
- <result column="event_title" property="eventTitle" jdbcType="VARCHAR" />
- <result column="event_remark" property="eventRemark" jdbcType="VARCHAR" />
- <result column="created_by" property="createdBy" jdbcType="BIGINT" />
- <result column="created_at" property="createdAt" jdbcType="DATE" />
- </resultMap>
- <sql id="Base_Column_List">
- oc_id,
- snapshot_id,
- event_id,
- account_id,
- position_id,
- group_id,
- event_time,
- event_code,
- event_title,
- event_remark,
- created_by,
- created_at,
- updated_by,
- updated_at
- </sql>
- <resultMap id="ExtResultMap" type="com.zhyc.xps.aqpt.dto.SnapshotEventDto" extends="BaseResultMap">
- <result column="account_name" property="accountName" jdbcType="VARCHAR" />
- <result column="position_name" property="positionName" jdbcType="VARCHAR" />
- <result column="group_name" property="groupName" jdbcType="VARCHAR" />
- </resultMap>
- <sql id="Ext_Column_List" >
- A.oc_id,
- A.snapshot_id,
- A.event_id,
- A.account_id,
- A.position_id,
- A.group_id,
- A.account_id_to,
- A.position_id_to,
- A.group_id_to,
- B.account_name,
- C.position_name,
- D.group_name,
- A.event_time,
- A.event_code,
- A.event_title,
- A.event_remark,
- A.created_by,
- A.created_at
- </sql>
- </mapper>
|