商品分类提交~

This commit is contained in:
YunaiV
2019-03-04 19:35:07 +08:00
parent 13e9b5526b
commit 5192472ed5
14 changed files with 416 additions and 20 deletions

View File

@@ -3,7 +3,7 @@
<mapper namespace="cn.iocoder.mall.product.dao.ProductCategoryMapper">
<sql id="FIELDS">
id, pid, name, descrption, pic_url,
id, pid, name, description, pic_url,
sort, status, create_time
</sql>
@@ -43,7 +43,7 @@
</insert>
<update id="update" parameterType="ProductCategoryDO">
UPDATE resource
UPDATE product_category
<set>
<if test="pid != null">
pid = #{pid},