31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
|
|
<?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="cn.qihangerp.module.goods.mapper.OGoodsCategoryMapper">
|
||
|
|
|
||
|
|
<resultMap id="BaseResultMap" type="cn.qihangerp.module.goods.domain.OGoodsCategory">
|
||
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
||
|
|
<result property="number" column="number" jdbcType="VARCHAR"/>
|
||
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
||
|
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
||
|
|
<result property="parentId" column="parent_id" jdbcType="INTEGER"/>
|
||
|
|
<result property="path" column="path" jdbcType="VARCHAR"/>
|
||
|
|
<result property="sort" column="sort" jdbcType="INTEGER"/>
|
||
|
|
<result property="image" column="image" jdbcType="VARCHAR"/>
|
||
|
|
<result property="isdelete" column="isDelete" jdbcType="TINYINT"/>
|
||
|
|
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
||
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
|
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
||
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
id,`number`,`name`,
|
||
|
|
remark,parent_id,path,
|
||
|
|
sort,image,isDelete,
|
||
|
|
create_by,create_time,update_by,
|
||
|
|
update_time
|
||
|
|
</sql>
|
||
|
|
</mapper>
|