无关风月
5 天以前 1442f149019ee0590389abd7a88a79c4d9b59034
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.admin.mapper.DataGoodsMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.admin.entity.DataGoods">
        <id column="id" property="id" />
        <result column="name" property="name" />
        <result column="remark" property="remark" />
        <result column="price" property="price" />
        <result column="pg_price" property="pgPrice" />
        <result column="pid" property="pid" />
        <result column="cateids" property="cateids" />
        <result column="cover" property="cover" />
        <result column="slider" property="slider" />
        <result column="sort" property="sort" />
        <result column="create_at" property="createAt" />
    </resultMap>
 
</mapper>