You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.9 KiB
35 lines
1.9 KiB
9 months ago
|
<?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.ruoyi.system.mapper.TdPropertyEmentMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.ruoyi.system.domain.TdPropertyEment">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="useId" column="use_id" jdbcType="VARCHAR"/>
|
||
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
||
|
<result property="purposes" column="purposes" jdbcType="VARCHAR"/>
|
||
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
||
|
<result property="maintainDepart" column="maintain_depart" jdbcType="VARCHAR"/>
|
||
|
<result property="maintainUser" column="maintain_user" jdbcType="VARCHAR"/>
|
||
|
<result property="maintainDate" column="maintain_date" jdbcType="TIMESTAMP"/>
|
||
|
<result property="maintainState" column="maintain_state" jdbcType="VARCHAR"/>
|
||
|
<result property="destoryState" column="destory_state" jdbcType="VARCHAR"/>
|
||
|
<result property="destoryDepart" column="destory_depart" jdbcType="VARCHAR"/>
|
||
|
<result property="destoryUser" column="destory_user" jdbcType="VARCHAR"/>
|
||
|
<result property="destoryDate" column="destory_date" jdbcType="TIMESTAMP"/>
|
||
|
<result property="destoryType" column="destory_type" jdbcType="VARCHAR"/>
|
||
|
<result property="maintainRemark" column="maintain_remark" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,use_id,name,
|
||
|
purposes,remark,maintain_depart,
|
||
|
maintain_user,maintain_date,maintain_state,
|
||
|
destory_state,destory_depart,destory_user,
|
||
|
destory_date,destory_type,maintain_remark,
|
||
|
create_time
|
||
|
</sql>
|
||
|
</mapper>
|