From 3342a167067cc44154314cbdd39b13f60c608ce8 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Wed, 13 Mar 2024 10:29:17 +0800 Subject: [PATCH] fix:走航报告下载补充提交 --- screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java b/screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java index 41c311b..8ea2fdb 100644 --- a/screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java +++ b/screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java @@ -49,6 +49,17 @@ @NotNull(message = "���������������������������") private Integer polluteType; + @ApiModelProperty(value = "������") + private String latitude; + + @ApiModelProperty(value = "������") + private String longitude; + + @ApiModelProperty(value = "���������������") + private String address; + + @ApiModelProperty(value = "������������") + private String name; @ApiModelProperty(value = "������������id") @NotNull(message = "���������������������������") private Integer changeType; @@ -78,6 +89,10 @@ @ApiModelProperty(value = "������������") private List<FileVo> fileBaseList; + @ApiModelProperty(value = "������������������") + private Integer keyPoint; + + public Allocation convert() { Allocation allocation = BeanConverts.convert(this, Allocation.class); return allocation; -- Gitblit v1.8.0