Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
77946393
Commit
77946393
authored
Jun 16, 2022
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改码模板
parent
318c2326
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
24 deletions
+5
-24
prod.cmd
prod.cmd
+5
-0
DistributionFeign.java
...a/com/pangding/web/authority/feign/DistributionFeign.java
+0
-24
No files found.
prod.cmd
View file @
77946393
...
...
@@ -5,6 +5,11 @@ SET SH=%SH% docker run --name pd-user -it -d --restart always
SET SH=%SH% -v /home/pangd/conf:/home/java/conf/ -v /home/cache/:/home/cache/ -v /home/pangd/:/home/pangd/ --net pd
SET SH=%SH% pd-user:latest --spring.profiles.active=prod --yzg.config.url=/home/java/conf/pd_all.properties
:: SET SH=%SH% docker rm -f pd-user1;
:: SET SH=%SH% docker run --name pd-user1 -it -d --restart always
:: SET SH=%SH% -v /home/pangd/conf:/home/java/conf/ -v /home/cache/:/home/cache/ -v /home/pangd/:/home/pangd/ --net pd
:: SET SH=%SH% pd-user:latest --spring.profiles.active=prod --yzg.config.url=/home/java/conf/pd_all.properties
if 1 equ 1 (
java_docker -ssh root@spd1 -sh "%SH%"
...
...
src/main/java/com/pangding/web/authority/feign/DistributionFeign.java
deleted
100644 → 0
View file @
318c2326
package
com
.
pangding
.
web
.
authority
.
feign
;
import
com.pangding.web.vo.product.req.merchant.CompanyCompanySaveSimpleReqVo
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
org.springframework.cloud.openfeign.FeignClient
;
import
org.springframework.http.MediaType
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.RestController
;
@FeignClient
(
value
=
"pd-interface-distribution"
)
@RestController
@RequestMapping
(
value
=
"/conversion"
,
method
=
RequestMethod
.
POST
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
public
interface
DistributionFeign
{
/**
* 途比达推荐大屏数据
* 公司信息保存
*/
@PostMapping
(
value
=
"/sendCompanyInfo"
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
ResponseResult
<
String
>
sendCompanyInfo
(
CompanyCompanySaveSimpleReqVo
req
);
}
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