jiaqingjiayi-houduan/project/jiaqingjiayi/target/classes/mapper/OrderItemsMapper.xml
2025-02-25 14:47:45 +08:00

27 lines
1.3 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="com.cj.jiaqingjiayi.mapper.OrderItemsMapper">
<resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.OrderItems">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="orderId" column="orderId" jdbcType="BIGINT"/>
<result property="commoditiesId" column="commoditiesId" jdbcType="BIGINT"/>
<result property="quantity" column="quantity" jdbcType="INTEGER"/>
<result property="price" column="price" jdbcType="DECIMAL"/>
<result property="subtotal" column="subtotal" jdbcType="DECIMAL"/>
<result property="attributeNames" column="attributeNames" 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,orderId,commoditiesId,
quantity,price,subtotal,
attributeNames,createTime,updateTime,
isDelete
</sql>
</mapper>