Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
e66c227d
Commit
e66c227d
authored
Aug 16, 2022
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
fc32f558
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
RequestData.java
...va/com/yeejoin/equipmanage/common/entity/RequestData.java
+54
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/entity/RequestData.java
0 → 100644
View file @
e66c227d
package
com
.
yeejoin
.
equipmanage
.
common
.
entity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
@ApiModel
(
value
=
"RequestData"
,
description
=
"指挥资源,请求坐标类"
)
public
class
RequestData
{
@ApiModelProperty
(
value
=
"经度"
)
private
Double
longitude
;
@ApiModelProperty
(
value
=
"纬度"
)
private
Double
latitude
;
//视频匹配规则方便查询 增加第二个经纬度 用来传递 优先级2的坐标
@ApiModelProperty
(
value
=
"经度2"
)
private
Double
longitudeTwo
;
@ApiModelProperty
(
value
=
"纬度2"
)
private
Double
latitudeTwo
;
@ApiModelProperty
(
value
=
"距离"
)
private
Double
distance
;
@ApiModelProperty
(
value
=
"水源资源类型(hydrant:消火栓、crane:消防水鹤、natural:天然水源、pool:消防水池)"
)
private
String
resourceType
;
@ApiModelProperty
(
value
=
"队伍类型code"
)
private
String
typeCode
;
@ApiModelProperty
(
value
=
"是否只显示24小时内警情"
)
private
Boolean
whether24
=
false
;
/*2547 增加灾情事件类型匹配规则 xml中同步增加模糊查询 54-56行 陈召 2021-09-24 开始*/
@ApiModelProperty
(
value
=
"灾情事件类型模糊匹配"
)
private
String
alertType
;
/*2547 增加灾情事件类型匹配规则 xml中同步增加模糊查询 54-56行 陈召 2021-09-24 结束*/
@ApiModelProperty
(
value
=
"灾情地址模糊匹配"
)
private
String
address
;
@ApiModelProperty
(
value
=
"灾情状态"
)
private
Integer
status
;
@ApiModelProperty
(
value
=
"灾情ID"
)
private
Long
alertId
;
@ApiModelProperty
(
value
=
"类型code"
)
private
String
alertTypeCode
;
@ApiModelProperty
(
value
=
"排序"
)
private
String
orderTime
;
}
\ 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