44323
2024-05-21 781b5fea46cd55220b5ffca17aa6bb1b83551410
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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.management.mapper.TGoodsMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.goods.api.domain.TGoods">
        <id column="id" property="id" />
        <result column="name" property="name" />
        <result column="price" property="price" />
        <result column="total" property="total" />
        <result column="surplus" property="surplus" />
        <result column="userCount" property="userCount" />
        <result column="typeIds" property="typeIds" />
        <result column="coverImg" property="coverImg" />
        <result column="detailImg" property="detailImg" />
        <result column="detail" property="detail" />
        <result column="isDelete" property="isDelete" />
        <result column="type" property="type" />
        <result column="integral" property="integral" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, name,
 price, total, surplus, userCount, typeIds, coverImg, detailImg, detail,  isDelete, type,integral,
    </sql>
 
</mapper>