|
@@ -0,0 +1,22 @@
|
|
|
+<?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.fjhx.item.mapper.product.ProductInfoMapper">
|
|
|
+
|
|
|
+ <select id="getPage" resultType="com.fjhx.item.entity.product.vo.ProductInfoVo">
|
|
|
+ select pi.id,
|
|
|
+ pi.product_classify_id,
|
|
|
+ pi.code,
|
|
|
+ pi.type,
|
|
|
+ pi.name,
|
|
|
+ pi.spec,
|
|
|
+ pi.unit,
|
|
|
+ pi.remark,
|
|
|
+ pi.create_user,
|
|
|
+ pi.create_time,
|
|
|
+ pi.update_user,
|
|
|
+ pi.update_time
|
|
|
+ from product_info pi
|
|
|
+ ${ew.customSqlSegment}
|
|
|
+ </select>
|
|
|
+
|
|
|
+</mapper>
|