Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
nyx
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
发现
nyx
Commits
be8b8d24
Commit
be8b8d24
authored
Sep 24, 2020
by
jscat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nyx javaapp: 调整tbl_product的id为自增
parent
bb4b0533
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
4 行增加
和
6 行删除
+4
-6
增值产品-小程序及app/nyx_app_key/api/src/main/java/cn/com/fun/nyxkey/api/service/impl/Rockwell_keyServiceImpl.java
+1
-2
增值产品-小程序及app/nyx_app_key/api/src/main/resources/cn/com/fun/nyxkey/api/repository/Rockwell_keyMapper.xml
+3
-4
没有找到文件。
增值产品-小程序及app/nyx_app_key/api/src/main/java/cn/com/fun/nyxkey/api/service/impl/Rockwell_keyServiceImpl.java
查看文件 @
be8b8d24
packa
ge
cn
.
com
.
fun
.
nyxkey
.
api
.
service
.
impl
;
packa
ge
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"
));
...
...
增值产品-小程序及app/nyx_app_key/api/src/main/resources/cn/com/fun/nyxkey/api/repository/Rockwell_keyMapper.xml
查看文件 @
be8b8d24
<?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
de
sc
ORDER BY default_status DESC, product_id
a
sc
<if
test=
"pagination != null "
>
<if
test=
"pagination != null "
>
<include
refid=
"pagination"
/>
<include
refid=
"pagination"
/>
</if>
</if>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论