Blame view

backend/form/src/main/resources/mapper/FormDataTemplateDraftMapper.xml 995 Bytes
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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.hotent.form.persistence.dao.FormDataTemplateDraftDao">
	<resultMap id="FormDataTemplateDraft" type="com.hotent.form.model.FormDataTemplateDraft">
		<id property="id" column="ID_" jdbcType="VARCHAR"/>
		<result property="title" column="TITLE_" jdbcType="VARCHAR"/>
		<result property="tempAlias" column="TEMP_ALIAS_" jdbcType="VARCHAR"/>
		<result property="dataJson" column="DATA_JSON_" jdbcType="VARCHAR"/>
		<result property="createBy" column="CREATE_BY_" jdbcType="VARCHAR"/>
		<result property="createTime" column="CREATE_TIME_" jdbcType="TIMESTAMP"/>
        <result column="CREATE_BY_" property="createBy" />
        <result column="CREATE_TIME_" property="createTime" />
        <result column="UPDATE_BY_" property="updateBy" />
        <result column="UPDATE_TIME_" property="updateTime" />
	</resultMap>
	
</mapper>