21 lines
967 B
XML
21 lines
967 B
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="com.cj.jiaqingjiayi.mapper.SpecificationsMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.Specifications">
|
||
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
||
|
<result property="businessId" column="businessId" jdbcType="BIGINT"/>
|
||
|
<result property="specificationsName" column="specificationsName" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,businessId,specificationsName,
|
||
|
createTime,updateTime,isDelete
|
||
|
</sql>
|
||
|
</mapper>
|