Blame view

backend/form/src/main/resources/mapper/ViewManageMapper.xml 761 Bytes
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.ViewManageDao">
	<resultMap id="ViewManage" type="com.hotent.form.model.ViewManage">
		<id property="id" column="ID_" jdbcType="VARCHAR"/>
		<result property="desc" column="DESC_" jdbcType="VARCHAR"/>
		<result property="viewName" column="VIEW_NAME_" jdbcType="VARCHAR"/>
		<result property="sql" column="SQL_" jdbcType="VARCHAR"/>
		<result property="dsAlias" column="DS_ALIAS_" jdbcType="VARCHAR"/>
		<result property="status" column="STATUS_" jdbcType="NUMERIC"/>
		<result property="tenantId" column="TENANT_ID_" jdbcType="VARCHAR"/>
	</resultMap>
	
</mapper>