10 lines
507 B
XML
10 lines
507 B
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.atguigu.spzx.manger.mapper.ProductDetailsMapper">
|
||
|
|
||
|
<!-- 保存数据 -->
|
||
|
<insert id="save" useGeneratedKeys="true" keyProperty="id">
|
||
|
insert into product_details (id, product_id, image_urls, create_time, update_time, is_deleted)
|
||
|
values (#{id}, #{productId}, #{imageUrls}, now(), now(), 0) </insert>
|
||
|
</mapper>
|