jiaqingjiayi-houduan/project/jiaqingjiayi/target/classes/mapper/AttributeMapper.xml

23 lines
1.1 KiB
XML
Raw Normal View History

2025-02-25 06:47:45 +00:00
<?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.AttributeMapper">
<resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.Attribute">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="businessId" column="businessId" jdbcType="BIGINT"/>
<result property="specificationsId" column="specificationsId" jdbcType="BIGINT"/>
<result property="attributeName" column="attributeName" jdbcType="VARCHAR"/>
<result property="attributeStatus" column="attributeStatus" jdbcType="TINYINT"/>
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,businessId,specificationsId,
attributeName,attributeStatus,createTime,
updateTime
</sql>
</mapper>