All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.mdiy.dao.IConfigDao.xml Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
<?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="net.mingsoft.mdiy.dao.IConfigDao">
	<resultMap id="resultMap" type="net.mingsoft.mdiy.entity.ConfigEntity">
			<id column="id" property="id" /><!--编号 -->
				<result column="config_name" property="configName" /><!--模型名称 -->
				<result column="config_data" property="configData" /><!--模型数据 -->
				<result column="create_by" property="createBy" /><!--创建人 -->
				<result column="create_date" property="createDate" /><!--创建时间 -->
				<result column="update_by" property="updateBy" /><!--修改人 -->
				<result column="update_date" property="updateDate" /><!--修改时间 -->
				<result column="del" property="del" /><!--删除标记 -->
	</resultMap>

	<!-- 根据查询实体开始 -->
	<select id="getByConfigName" resultMap="resultMap">
		select * from MDIY_CONFIG where config_name = #{configName}
	</select>


</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy