Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
39bb2d00
Commit
39bb2d00
authored
Dec 08, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改应用编码校验
parent
67c1a627
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
base-manager/src/main/java/com/mortals/xhx/module/app/service/impl/AppVersionServiceImpl.java
...ls/xhx/module/app/service/impl/AppVersionServiceImpl.java
+7
-1
base-manager/src/test/java/com/mortals/httpclient/system/system.http
...r/src/test/java/com/mortals/httpclient/system/system.http
+8
-0
No files found.
base-manager/src/main/java/com/mortals/xhx/module/app/service/impl/AppVersionServiceImpl.java
View file @
39bb2d00
...
...
@@ -83,7 +83,13 @@ public class AppVersionServiceImpl extends AbstractCRUDServiceImpl<AppVersionDao
//更新app版本使用
appVersionEntity
.
setUsed
(
YesNoEnum
.
YES
.
getValue
());
appVersionEntity
.
setDistributeFilePath
(
disPath
);
this
.
getDao
().
update
(
new
AppVersionQuery
().
appId
(
appVersionEntity
.
getAppId
()).
used
(
YesNoEnum
.
NO
.
getValue
()));
AppVersionEntity
model
=
new
AppVersionEntity
();
model
.
setUsed
(
YesNoEnum
.
NO
.
getValue
());
AppVersionQuery
condition
=
new
AppVersionQuery
().
appId
(
appVersionEntity
.
getAppId
());
this
.
getDao
().
update
(
model
,
condition
);
this
.
update
(
appVersionEntity
,
context
);
//更新当前app
...
...
base-manager/src/test/java/com/mortals/httpclient/system/system.http
View file @
39bb2d00
...
...
@@ -23,6 +23,14 @@ Content-Type: application/json
{}
###首页
POST https://rzsc.sczwfw.gov.cn/captcha-api/captcha/get
Content-Type: application/json
{"captchaType":"clickWord","clientUid":"point-3e4e2e48-f56d-4d2f-9d9d-5befa6de9d84","ts":1670230253434}
###短信设置查看
GET {{baseUrl}}/sms/set/info?id=1
Authorization: {{authToken}}
...
...
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