Commit be8b8d24 by jscat

nyx javaapp: 调整tbl_product的id为自增

parent bb4b0533
package cn.com.fun.nyxkey.api.service.impl; package cn.com.fun.nyxkey.api.service.impl;
...@@ -508,7 +508,6 @@ public class Rockwell_keyServiceImpl implements Rockwell_keyService { ...@@ -508,7 +508,6 @@ public class Rockwell_keyServiceImpl implements Rockwell_keyService {
for(int i=0; i<desc.size(); i++) for(int i=0; i<desc.size(); i++)
{ {
Rockwell_keyT_product rockwell_keyT_product = new Rockwell_keyT_product(); Rockwell_keyT_product rockwell_keyT_product = new Rockwell_keyT_product();
rockwell_keyT_product.setProductId("pid_"+UUID.randomUUID().toString());
rockwell_keyT_product.setActivityId(activityId); rockwell_keyT_product.setActivityId(activityId);
rockwell_keyT_product.setProductStatus("01"); rockwell_keyT_product.setProductStatus("01");
rockwell_keyT_product.setProductDesc(URLDecoder.decode(desc.get(i), "UTF-8")); rockwell_keyT_product.setProductDesc(URLDecoder.decode(desc.get(i), "UTF-8"));
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
...@@ -329,11 +329,10 @@ limitations under the License. ...@@ -329,11 +329,10 @@ limitations under the License.
<!-- match api2-7 新增多条 product 记录 update jscat 20200902 --> <!-- match api2-7 新增多条 product 记录 update jscat 20200902 -->
<insert id="addT_product" parameterType="cn.com.fun.nyxkey.api.domain.query.Rockwell_keyT_productQuery"> <insert id="addT_product" parameterType="cn.com.fun.nyxkey.api.domain.query.Rockwell_keyT_productQuery">
insert into tbl_product(product_id, activity_id, product_status, default_status, product_desc, unit_price, quantity, start_datetime, end_datetime, create_datetime,update_datetime) insert into tbl_product(activity_id, product_status, default_status, product_desc, unit_price, quantity, start_datetime, end_datetime, create_datetime,update_datetime)
values values
<foreach collection="listRockwell_keyT_product" index="index" item="item" open="" separator="," close=""> <foreach collection="listRockwell_keyT_product" index="index" item="item" open="" separator="," close="">
( (
#{item.productId},
#{item.activityId}, #{item.activityId},
#{item.productStatus}, #{item.productStatus},
#{item.defaultStatus}, #{item.defaultStatus},
...@@ -358,7 +357,7 @@ limitations under the License. ...@@ -358,7 +357,7 @@ limitations under the License.
<if test="activityId != null and activityId != '' "> <if test="activityId != null and activityId != '' ">
AND activity_id=#{activityId} AND activity_id=#{activityId}
</if> </if>
ORDER BY default_status DESC, product_id desc ORDER BY default_status DESC, product_id asc
<if test="pagination != null "> <if test="pagination != null ">
<include refid="pagination"/> <include refid="pagination"/>
</if> </if>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论