Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-api-boot
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-api-boot
Commits
448c368e
提交
448c368e
authored
6月 01, 2022
作者:
17607474349
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:
1、标签、信标同步
上级
aebdedb8
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
121 行增加
和
35 行删除
+121
-35
LocationTag.java
...main/java/com/yiring/app/domain/location/LocationTag.java
+10
-0
LocationTagExportExcel.java
...yiring/app/excel/location/tag/LocationTagExportExcel.java
+3
-3
LocationTagImportExcel.java
...yiring/app/excel/location/tag/LocationTagImportExcel.java
+4
-4
LocationBeaconAddParam.java
...ing/app/param/location/beacon/LocationBeaconAddParam.java
+15
-7
LocationBeaconServiceImpl.java
...rvice/location/beacon/impl/LocationBeaconServiceImpl.java
+17
-9
LocationTagService.java
...m/yiring/app/service/location/tag/LocationTagService.java
+6
-0
LocationTagServiceImpl.java
...app/service/location/tag/impl/LocationTagServiceImpl.java
+51
-3
LocationTagController.java
...om/yiring/app/web/location/tag/LocationTagController.java
+6
-0
application-dev.yml
app/src/main/resources/application-dev.yml
+9
-9
没有找到文件。
app/src/main/java/com/yiring/app/domain/location/LocationTag.java
浏览文件 @
448c368e
/* (C) 2022 YiRing, Inc. */
/* (C) 2022 YiRing, Inc. */
package
com
.
yiring
.
app
.
domain
.
location
;
package
com
.
yiring
.
app
.
domain
.
location
;
import
cn.hutool.core.util.StrUtil
;
import
com.yiring.app.domain.visitor.Car
;
import
com.yiring.app.domain.visitor.Car
;
import
com.yiring.auth.domain.user.User
;
import
com.yiring.auth.domain.user.User
;
import
com.yiring.common.annotation.FieldMapping
;
import
com.yiring.common.annotation.FieldMapping
;
...
@@ -131,6 +132,15 @@ public class LocationTag extends BasicEntity implements Serializable {
...
@@ -131,6 +132,15 @@ public class LocationTag extends BasicEntity implements Serializable {
public
String
text
()
{
public
String
text
()
{
return
this
.
text
;
return
this
.
text
;
}
}
public
static
Type
getByCode
(
String
text
)
{
for
(
Type
type
:
values
())
{
if
(
StrUtil
.
equals
(
type
.
text
(),
text
))
{
return
type
;
}
}
throw
new
RuntimeException
(
"Type获取未知风险"
);
}
}
}
@Override
@Override
...
...
app/src/main/java/com/yiring/app/excel/location/tag/LocationTagExportExcel.java
浏览文件 @
448c368e
...
@@ -34,8 +34,8 @@ public class LocationTagExportExcel implements Serializable {
...
@@ -34,8 +34,8 @@ public class LocationTagExportExcel implements Serializable {
@ExcelColumn
(
title
=
"编号"
)
@ExcelColumn
(
title
=
"编号"
)
String
code
;
String
code
;
@ExcelColumn
(
title
=
"标签
类型
"
)
@ExcelColumn
(
title
=
"标签
型号
"
)
LocationTag
.
Type
type
;
String
type
;
@ExcelColumn
(
title
=
"状态"
)
@ExcelColumn
(
title
=
"状态"
)
Boolean
silent
;
Boolean
silent
;
...
@@ -53,7 +53,7 @@ public class LocationTagExportExcel implements Serializable {
...
@@ -53,7 +53,7 @@ public class LocationTagExportExcel implements Serializable {
return
LocationTagExportExcel
return
LocationTagExportExcel
.
builder
()
.
builder
()
.
code
(
locationTag
.
getCode
())
.
code
(
locationTag
.
getCode
())
.
type
(
locationTag
.
getType
())
.
type
(
locationTag
.
getType
()
.
text
()
)
.
silent
(
locationTag
.
getSilent
())
.
silent
(
locationTag
.
getSilent
())
.
imei
(
locationTag
.
getImei
())
.
imei
(
locationTag
.
getImei
())
.
volt
(
locationTag
.
getVolt
())
.
volt
(
locationTag
.
getVolt
())
...
...
app/src/main/java/com/yiring/app/excel/location/tag/LocationTagImportExcel.java
浏览文件 @
448c368e
...
@@ -30,7 +30,7 @@ public class LocationTagImportExcel implements Serializable {
...
@@ -30,7 +30,7 @@ public class LocationTagImportExcel implements Serializable {
String
code
;
String
code
;
// 标签型号
// 标签型号
@ExcelColumn
(
title
=
"标签
类型
"
)
@ExcelColumn
(
title
=
"标签
型号
"
)
String
type
;
String
type
;
// 设备编码
// 设备编码
...
@@ -40,9 +40,9 @@ public class LocationTagImportExcel implements Serializable {
...
@@ -40,9 +40,9 @@ public class LocationTagImportExcel implements Serializable {
public
static
LocationTag
transform
(
LocationTagImportExcel
locationTagImportExcel
)
{
public
static
LocationTag
transform
(
LocationTagImportExcel
locationTagImportExcel
)
{
return
LocationTag
return
LocationTag
.
builder
()
.
builder
()
.
code
(
locationTagImportExcel
.
code
)
.
code
(
locationTagImportExcel
.
getCode
()
)
.
type
(
LocationTag
.
Type
.
valueOf
(
locationTagImportExcel
.
type
))
.
type
(
LocationTag
.
Type
.
getByCode
(
locationTagImportExcel
.
getType
()
))
.
imei
(
StrUtil
.
isEmpty
(
locationTagImportExcel
.
imei
)
?
null
:
locationTagImportExcel
.
imei
)
.
imei
(
StrUtil
.
isEmpty
(
locationTagImportExcel
.
getImei
()
)
?
null
:
locationTagImportExcel
.
imei
)
.
createTime
(
LocalDateTime
.
now
())
.
createTime
(
LocalDateTime
.
now
())
.
build
();
.
build
();
}
}
...
...
app/src/main/java/com/yiring/app/param/location/beacon/LocationBeaconAddParam.java
浏览文件 @
448c368e
/* (C) 2022 YiRing, Inc. */
/* (C) 2022 YiRing, Inc. */
package
com
.
yiring
.
app
.
param
.
location
.
beacon
;
package
com
.
yiring
.
app
.
param
.
location
.
beacon
;
import
cn.hutool.core.util.ObjectUtil
;
import
com.yiring.app.domain.location.LocationBeacon
;
import
com.yiring.app.domain.location.LocationBeacon
;
import
com.yiring.app.util.GeoUtils
;
import
com.yiring.app.util.GeoUtils
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
...
@@ -58,7 +59,7 @@ public class LocationBeaconAddParam implements Serializable {
...
@@ -58,7 +59,7 @@ public class LocationBeaconAddParam implements Serializable {
String
voltUnit
;
String
voltUnit
;
public
static
LocationBeacon
transform
(
LocationBeaconAddParam
locationBeaconAddParam
)
{
public
static
LocationBeacon
transform
(
LocationBeaconAddParam
locationBeaconAddParam
)
{
return
LocationBeacon
LocationBeacon
locationBeacon
=
LocationBeacon
.
builder
()
.
builder
()
.
linkId
(
locationBeaconAddParam
.
getId
())
.
linkId
(
locationBeaconAddParam
.
getId
())
.
areaId
(
locationBeaconAddParam
.
getAreaId
())
.
areaId
(
locationBeaconAddParam
.
getAreaId
())
...
@@ -66,16 +67,23 @@ public class LocationBeaconAddParam implements Serializable {
...
@@ -66,16 +67,23 @@ public class LocationBeaconAddParam implements Serializable {
.
x
(
locationBeaconAddParam
.
getX
())
.
x
(
locationBeaconAddParam
.
getX
())
.
y
(
locationBeaconAddParam
.
getY
())
.
y
(
locationBeaconAddParam
.
getY
())
.
z
(
locationBeaconAddParam
.
getZ
())
.
z
(
locationBeaconAddParam
.
getZ
())
.
point
(
.
time
(
locationBeaconAddParam
.
getTime
())
.
volt
(
locationBeaconAddParam
.
getVolt
())
.
voltUnit
(
locationBeaconAddParam
.
getVoltUnit
())
.
build
();
if
(
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getX
())
&&
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getY
())
&&
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getY
())
)
{
locationBeacon
.
setPoint
(
GeoUtils
.
xyzToPoint
(
GeoUtils
.
xyzToPoint
(
locationBeaconAddParam
.
getX
().
doubleValue
(),
locationBeaconAddParam
.
getX
().
doubleValue
(),
locationBeaconAddParam
.
getY
().
doubleValue
(),
locationBeaconAddParam
.
getY
().
doubleValue
(),
locationBeaconAddParam
.
getZ
().
doubleValue
()
locationBeaconAddParam
.
getZ
().
doubleValue
()
)
)
)
);
.
time
(
locationBeaconAddParam
.
getTime
())
}
.
volt
(
locationBeaconAddParam
.
getVolt
())
return
locationBeacon
;
.
voltUnit
(
locationBeaconAddParam
.
getVoltUnit
())
.
build
();
}
}
}
}
app/src/main/java/com/yiring/app/service/location/beacon/impl/LocationBeaconServiceImpl.java
浏览文件 @
448c368e
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
package
com
.
yiring
.
app
.
service
.
location
.
beacon
.
impl
;
package
com
.
yiring
.
app
.
service
.
location
.
beacon
.
impl
;
import
cn.hutool.core.collection.ListUtil
;
import
cn.hutool.core.collection.ListUtil
;
import
cn.hutool.core.util.ObjectUtil
;
import
cn.hutool.core.util.StrUtil
;
import
cn.hutool.core.util.StrUtil
;
import
cn.hutool.json.JSONArray
;
import
cn.hutool.json.JSONArray
;
import
cn.hutool.json.JSONObject
;
import
cn.hutool.json.JSONObject
;
...
@@ -65,8 +66,8 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
...
@@ -65,8 +66,8 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
public
void
saveLocationBeacon
()
{
public
void
saveLocationBeacon
()
{
HashMap
<
String
,
Object
>
hashMap
=
new
HashMap
<>();
HashMap
<
String
,
Object
>
hashMap
=
new
HashMap
<>();
hashMap
.
put
(
"deviceType"
,
"BTI"
);
hashMap
.
put
(
"deviceType"
,
"BTI"
);
hashMap
.
put
(
"pageSize"
,
100
);
hashMap
.
put
(
"pageSize"
,
100
00
);
hashMap
.
put
(
"pageNum"
,
0
);
hashMap
.
put
(
"pageNum"
,
1
);
hashMap
.
put
(
"orgId"
,
100
);
hashMap
.
put
(
"orgId"
,
100
);
hashMap
.
put
(
"deviceId"
,
""
);
hashMap
.
put
(
"deviceId"
,
""
);
JSONObject
jsonObject
=
locationTagBeaconClient
.
page
(
JSONUtil
.
toJsonStr
(
hashMap
),
ZyUtil
.
manageLogin
());
JSONObject
jsonObject
=
locationTagBeaconClient
.
page
(
JSONUtil
.
toJsonStr
(
hashMap
),
ZyUtil
.
manageLogin
());
...
@@ -94,6 +95,7 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
...
@@ -94,6 +95,7 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
}
else
{
}
else
{
LocationBeacon
locationBeacon
=
locationBeaconOptional
.
get
();
LocationBeacon
locationBeacon
=
locationBeaconOptional
.
get
();
modifyLocationBeacon
(
locationBeacon
,
locationBeaconAddParam
);
modifyLocationBeacon
(
locationBeacon
,
locationBeaconAddParam
);
locationBeaconRepository
.
save
(
locationBeacon
);
}
}
});
});
}
}
...
@@ -217,12 +219,18 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
...
@@ -217,12 +219,18 @@ public class LocationBeaconServiceImpl implements LocationBeaconService {
locationBeacon
.
setTime
(
locationBeaconAddParam
.
getTime
());
locationBeacon
.
setTime
(
locationBeaconAddParam
.
getTime
());
locationBeacon
.
setVolt
(
locationBeaconAddParam
.
getVolt
());
locationBeacon
.
setVolt
(
locationBeaconAddParam
.
getVolt
());
locationBeacon
.
setVoltUnit
(
locationBeaconAddParam
.
getVoltUnit
());
locationBeacon
.
setVoltUnit
(
locationBeaconAddParam
.
getVoltUnit
());
locationBeacon
.
setPoint
(
if
(
GeoUtils
.
xyzToPoint
(
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getX
())
&&
locationBeaconAddParam
.
getX
().
doubleValue
(),
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getY
())
&&
locationBeaconAddParam
.
getY
().
doubleValue
(),
ObjectUtil
.
isNotEmpty
(
locationBeaconAddParam
.
getY
())
locationBeaconAddParam
.
getZ
().
doubleValue
()
)
{
)
locationBeacon
.
setPoint
(
);
GeoUtils
.
xyzToPoint
(
locationBeaconAddParam
.
getX
().
doubleValue
(),
locationBeaconAddParam
.
getY
().
doubleValue
(),
locationBeaconAddParam
.
getZ
().
doubleValue
()
)
);
}
}
}
}
}
app/src/main/java/com/yiring/app/service/location/tag/LocationTagService.java
浏览文件 @
448c368e
...
@@ -72,4 +72,10 @@ public interface LocationTagService {
...
@@ -72,4 +72,10 @@ public interface LocationTagService {
* @return Result<LocationTagVo>
* @return Result<LocationTagVo>
*/
*/
Result
<
LocationTagVo
>
info
(
LocationTagFindParam
param
);
Result
<
LocationTagVo
>
info
(
LocationTagFindParam
param
);
/**
* 同步标签
* @return Result<String>
*/
Result
<
String
>
sync
();
}
}
app/src/main/java/com/yiring/app/service/location/tag/impl/LocationTagServiceImpl.java
浏览文件 @
448c368e
...
@@ -25,6 +25,7 @@ import com.yiring.app.service.location.tag.LocationTagService;
...
@@ -25,6 +25,7 @@ import com.yiring.app.service.location.tag.LocationTagService;
import
com.yiring.app.util.zy.ZyUtil
;
import
com.yiring.app.util.zy.ZyUtil
;
import
com.yiring.app.vo.location.tag.LocationTagIndexVo
;
import
com.yiring.app.vo.location.tag.LocationTagIndexVo
;
import
com.yiring.app.vo.location.tag.LocationTagVo
;
import
com.yiring.app.vo.location.tag.LocationTagVo
;
import
com.yiring.app.vo.location.tag.ZyLocationTagVo
;
import
com.yiring.app.vo.user.UserVo
;
import
com.yiring.app.vo.user.UserVo
;
import
com.yiring.app.vo.visitor.CarVo
;
import
com.yiring.app.vo.visitor.CarVo
;
import
com.yiring.auth.domain.user.User
;
import
com.yiring.auth.domain.user.User
;
...
@@ -100,7 +101,7 @@ public class LocationTagServiceImpl implements LocationTagService {
...
@@ -100,7 +101,7 @@ public class LocationTagServiceImpl implements LocationTagService {
page
.
put
(
"pageSize"
,
1
);
page
.
put
(
"pageSize"
,
1
);
page
.
put
(
"tagId"
,
locationTag
.
getCode
());
page
.
put
(
"tagId"
,
locationTag
.
getCode
());
JSONObject
result
=
locationTagClient
.
tagPage
(
JSONUtil
.
toJsonStr
(
page
),
ZyUtil
.
manageLogin
());
JSONObject
result
=
locationTagClient
.
tagPage
(
JSONUtil
.
toJsonStr
(
page
),
ZyUtil
.
manageLogin
());
if
(!
ObjectUtil
.
equals
(
jsonObjec
t
.
get
(
"code"
),
200
))
{
if
(!
ObjectUtil
.
equals
(
resul
t
.
get
(
"code"
),
200
))
{
throw
new
RuntimeException
(
StrUtil
.
toString
(
jsonObject
.
get
(
"msg"
)));
throw
new
RuntimeException
(
StrUtil
.
toString
(
jsonObject
.
get
(
"msg"
)));
}
}
JSONObject
data
=
JSONUtil
.
parseObj
(
result
.
get
(
"data"
));
JSONObject
data
=
JSONUtil
.
parseObj
(
result
.
get
(
"data"
));
...
@@ -230,8 +231,8 @@ public class LocationTagServiceImpl implements LocationTagService {
...
@@ -230,8 +231,8 @@ public class LocationTagServiceImpl implements LocationTagService {
page
.
put
(
"pageSize"
,
1
);
page
.
put
(
"pageSize"
,
1
);
page
.
put
(
"tagId"
,
locationTag
.
getCode
());
page
.
put
(
"tagId"
,
locationTag
.
getCode
());
JSONObject
result
=
locationTagClient
.
tagPage
(
JSONUtil
.
toJsonStr
(
page
),
ZyUtil
.
manageLogin
());
JSONObject
result
=
locationTagClient
.
tagPage
(
JSONUtil
.
toJsonStr
(
page
),
ZyUtil
.
manageLogin
());
if
(!
ObjectUtil
.
equals
(
jsonObjec
t
.
get
(
"code"
),
200
))
{
if
(!
ObjectUtil
.
equals
(
resul
t
.
get
(
"code"
),
200
))
{
throw
new
RuntimeException
(
StrUtil
.
toString
(
jsonObjec
t
.
get
(
"msg"
)));
throw
new
RuntimeException
(
StrUtil
.
toString
(
resul
t
.
get
(
"msg"
)));
}
}
JSONObject
data
=
JSONUtil
.
parseObj
(
result
.
get
(
"data"
));
JSONObject
data
=
JSONUtil
.
parseObj
(
result
.
get
(
"data"
));
JSONArray
records
=
JSONUtil
.
parseArray
(
data
.
get
(
"records"
));
JSONArray
records
=
JSONUtil
.
parseArray
(
data
.
get
(
"records"
));
...
@@ -333,6 +334,53 @@ public class LocationTagServiceImpl implements LocationTagService {
...
@@ -333,6 +334,53 @@ public class LocationTagServiceImpl implements LocationTagService {
return
Result
.
ok
(
locationTagVo
);
return
Result
.
ok
(
locationTagVo
);
}
}
@Override
public
Result
<
String
>
sync
()
{
HashMap
<
String
,
Object
>
page
=
new
HashMap
<>();
page
.
put
(
"orgId"
,
FACTORY_ID
);
page
.
put
(
"pageNum"
,
1
);
page
.
put
(
"pageSize"
,
1000
);
JSONObject
result
=
locationTagClient
.
tagPage
(
JSONUtil
.
toJsonStr
(
page
),
ZyUtil
.
manageLogin
());
if
(!
ObjectUtil
.
equals
(
result
.
get
(
"code"
),
200
))
{
throw
new
RuntimeException
(
StrUtil
.
toString
(
result
.
get
(
"msg"
)));
}
JSONObject
data
=
JSONUtil
.
parseObj
(
result
.
get
(
"data"
));
JSONArray
records
=
JSONUtil
.
parseArray
(
data
.
get
(
"records"
));
List
<
ZyLocationTagVo
>
zyLocationTagVos
=
JSONUtil
.
toList
(
JSONUtil
.
toJsonStr
(
records
),
ZyLocationTagVo
.
class
);
List
<
LocationTag
>
locationTags
=
locationTagRepository
.
findAll
();
Map
<
String
,
List
<
LocationTag
>>
resultMap
=
locationTags
.
stream
()
.
collect
(
Collectors
.
groupingBy
(
LocationTag:
:
getCode
));
zyLocationTagVos
.
forEach
(
zyLocationTagVo
->
{
if
(
resultMap
.
get
(
zyLocationTagVo
.
getTagId
())
==
null
)
{
LocationTag
locationTag
=
LocationTag
.
builder
()
.
code
(
zyLocationTagVo
.
getTagId
())
.
linkId
(
zyLocationTagVo
.
getId
())
.
time
(
zyLocationTagVo
.
getRaiseTime
())
.
silent
(
zyLocationTagVo
.
getSilent
())
.
used
(
zyLocationTagVo
.
getUsed
())
.
volt
(
zyLocationTagVo
.
getVolt
())
.
voltUnit
(
zyLocationTagVo
.
getVoltUnit
())
.
type
(
LocationTag
.
Type
.
getByCode
(
zyLocationTagVo
.
getTagCategory
()))
.
build
();
locationTagRepository
.
save
(
locationTag
);
return
;
}
LocationTag
locationTag
=
resultMap
.
get
(
zyLocationTagVo
.
getTagId
()).
get
(
0
);
locationTag
.
setLinkId
(
zyLocationTagVo
.
getId
());
locationTag
.
setTime
(
zyLocationTagVo
.
getRaiseTime
());
locationTag
.
setSilent
(
zyLocationTagVo
.
getSilent
());
locationTag
.
setUsed
(
zyLocationTagVo
.
getUsed
());
locationTag
.
setVolt
(
zyLocationTagVo
.
getVolt
());
locationTag
.
setVoltUnit
(
zyLocationTagVo
.
getVoltUnit
());
locationTagRepository
.
save
(
locationTag
);
});
return
Result
.
ok
();
}
private
boolean
hasLocationTagInfoByCode
(
String
code
)
{
private
boolean
hasLocationTagInfoByCode
(
String
code
)
{
LocationTag
locationTag
=
LocationTag
.
builder
().
code
(
code
).
build
();
LocationTag
locationTag
=
LocationTag
.
builder
().
code
(
code
).
build
();
return
locationTagRepository
.
count
(
Example
.
of
(
locationTag
))
>
0
;
return
locationTagRepository
.
count
(
Example
.
of
(
locationTag
))
>
0
;
...
...
app/src/main/java/com/yiring/app/web/location/tag/LocationTagController.java
浏览文件 @
448c368e
...
@@ -84,4 +84,10 @@ public class LocationTagController {
...
@@ -84,4 +84,10 @@ public class LocationTagController {
public
Result
<
LocationTagVo
>
info
(
@Valid
LocationTagFindParam
param
)
{
public
Result
<
LocationTagVo
>
info
(
@Valid
LocationTagFindParam
param
)
{
return
locationTagService
.
info
(
param
);
return
locationTagService
.
info
(
param
);
}
}
@ApiOperation
(
"同步数据"
)
@PostMapping
(
"sync"
)
public
Result
<
String
>
sync
()
{
return
locationTagService
.
sync
();
}
}
}
app/src/main/resources/application-dev.yml
浏览文件 @
448c368e
...
@@ -101,23 +101,23 @@ zy-config:
...
@@ -101,23 +101,23 @@ zy-config:
queue-name
:
tenant_msg_${zy-config.open.client-secret}_${zy-config.open.client-id}_mock
queue-name
:
tenant_msg_${zy-config.open.client-secret}_${zy-config.open.client-id}_mock
# 开放接口信息配置
# 开放接口信息配置
open
:
open
:
api
:
http
://${zy-config.host}:789
/positionApi
api
:
http
s://nl.yz-cloud.com
/positionApi
client-id
:
sc2
1080400
client-id
:
sc2
2030527
grant-type
:
client_credentials
grant-type
:
client_credentials
client-secret
:
12A14FDC
client-secret
:
C18422B9
tenant
:
sc2
1080400
tenant
:
sc2
2030527
# 代理接口信息配置
# 代理接口信息配置
proxy
:
proxy
:
api
:
https://nl.yz-cloud.com
api
:
https://nl.yz-cloud.com
tenant
:
ts00000006
tenant
:
sc22030527
# 应用平台账户信息
# 应用平台账户信息
client
:
client
:
username
:
test1234
username
:
client
password
:
123456
password
:
client@yiring.com
# 管理后台账户信息
# 管理后台账户信息
manage
:
manage
:
username
:
test123
username
:
manage
password
:
test123
password
:
manage@yiring.com
feign
:
feign
:
httpclient
:
httpclient
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论