From 4da6ddeb728bb4649328aa652ffc1c56b0e81629 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Mon, 22 Apr 2024 11:42:07 +0800 Subject: [PATCH] Merge branch 'dev' of http://blit.7drlb.com:8888/r/moral into wb --- screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationUpdateCond.java | 16 ++++++++++++++++ 1 files changed, 16 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 0760bea..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; @@ -72,11 +83,16 @@ private String problemDescribe; @ApiModelProperty(value = "������") + @NotNull(message = "���������������������") private Integer state; @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