Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
config-server-api
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
何熠
config-server-api
Commits
d4461006
Commit
d4461006
authored
Dec 14, 2021
by
zhaoxiaolei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
H3C撞配
parent
de939588
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
3 deletions
+18
-3
SuperBomSkuInfoMapper.java
...om/uitech/authorization/mapper/SuperBomSkuInfoMapper.java
+2
-0
GetSKUByH3CConfigInfo.java
...tech/authorization/pojo/entity/GetSKUByH3CConfigInfo.java
+2
-2
SuperBomSkuInfo.java
...com/uitech/authorization/pojo/entity/SuperBomSkuInfo.java
+1
-0
IntegrateServiceImpl.java
...tech/authorization/service/impl/IntegrateServiceImpl.java
+0
-0
CtoBomMapper.xml
src/main/resources/mapper/CtoBomMapper.xml
+2
-1
SuperBomSkuInfoMapper.xml
src/main/resources/mapper/SuperBomSkuInfoMapper.xml
+11
-0
No files found.
src/main/java/cn/com/uitech/authorization/mapper/SuperBomSkuInfoMapper.java
View file @
d4461006
...
...
@@ -32,4 +32,6 @@ public interface SuperBomSkuInfoMapper extends IBaseMapper<SuperBomSkuInfo> {
List
<
String
>
getConfigInfos
(
String
configId
);
void
updateSkuStatus
(
SuperBomSkuInfo
returnSkuInfo
);
void
updateSkuStatusH3c
(
String
configId
,
String
skuCode
,
String
skuName
,
String
description
,
String
productType
,
String
productSmallType
);
}
src/main/java/cn/com/uitech/authorization/pojo/entity/GetSKUByH3CConfigInfo.java
View file @
d4461006
...
...
@@ -18,9 +18,9 @@ import java.util.List;
public
class
GetSKUByH3CConfigInfo
{
@JsonProperty
(
value
=
"TOKEN"
)
private
String
token
;
@JsonProperty
(
value
=
"QUOTERID"
)
@JsonProperty
(
value
=
"QUOTER
_
ID"
)
private
String
quoter_id
;
@JsonProperty
(
value
=
"QUOTERNUMBER"
)
@JsonProperty
(
value
=
"QUOTER
_
NUMBER"
)
private
String
quoter_number
;
@JsonProperty
(
value
=
"H3CPNLIST"
)
private
List
<
H3CPNList
>
h3CPNList
;
...
...
src/main/java/cn/com/uitech/authorization/pojo/entity/SuperBomSkuInfo.java
View file @
d4461006
...
...
@@ -177,6 +177,7 @@ public class SuperBomSkuInfo extends BasePageDto implements Serializable {
@Column
(
name
=
"id"
)
private
String
id
;
/**
* setUnisSalesName
*/
...
...
src/main/java/cn/com/uitech/authorization/service/impl/IntegrateServiceImpl.java
View file @
d4461006
This diff is collapsed.
Click to expand it.
src/main/resources/mapper/CtoBomMapper.xml
View file @
d4461006
...
...
@@ -373,6 +373,6 @@
</select>
<select
id=
"getConfigId"
resultType=
"cn.com.uitech.authorization.pojo.entity.ConfigurableBom"
>
select
config_id
from super_bom_info where h3c_pn = #{h3cPn}
select
*
from super_bom_info where h3c_pn = #{h3cPn}
</select>
</mapper>
\ No newline at end of file
src/main/resources/mapper/SuperBomSkuInfoMapper.xml
View file @
d4461006
...
...
@@ -194,4 +194,14 @@
<update
id=
"updateSkuStatus"
>
update super_bom_sku_info set apply_status = '未回号' , apply_user = #{applyUser} , apply_time = now() where config_id = #{configId}
</update>
<update
id=
"updateSkuStatusH3c"
>
update super_bom_sku_info set apply_status = '已回号' ,
apply_user = 'H3C' ,
apply_time = now(),
description = #{description},
product_type = #{productType},
product_small_type = #{productSmallType}
where config_id = #{configId}
</update>
</mapper>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment