瀏覽代碼

产品库

24282 2 年之前
父節點
當前提交
3ac9e1ff61

+ 5 - 0
hx-item/src/main/resources/mapper/product/ProductClassifyMapper.xml

@@ -0,0 +1,5 @@
+<?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.ProductClassifyMapper">
+
+</mapper>

+ 22 - 0
hx-item/src/main/resources/mapper/product/ProductInfoMapper.xml

@@ -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>