23 lines
1.0 KiB
XML
23 lines
1.0 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.ruoyi.winery.mapper.GoodsSpecMapper">
|
|
|
|
<resultMap type="GoodsSpec" id="GoodsSpecResult">
|
|
<result property="id" column="id" />
|
|
<result property="deptId" column="dept_id" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="specName" column="spec_name" />
|
|
<result property="specDesc" column="spec_desc" />
|
|
<result property="specImg" column="spec_img" />
|
|
<result property="specPrice" column="spec_price" />
|
|
<result property="detailSpec" column="detail_spec" />
|
|
<result property="remark" column="remark" />
|
|
</resultMap>
|
|
|
|
|
|
</mapper> |