Commit 4377dc17 authored by “yiyousong”'s avatar “yiyousong”
parents ff725b61 eb682d1f
......@@ -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
......
......@@ -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}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment