From c4e2c196aad8af656d94bc47e9f1a80bc504b5d7 Mon Sep 17 00:00:00 2001 From: lin <sbla5888@163.com> Date: Thu, 14 Mar 2024 18:15:29 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/org/springblade/modules/task/entity/TaskReportForRepairsEntity.java | 29 ++++++++++++++++++++++++++++- 1 files changed, 28 insertions(+), 1 deletions(-) diff --git a/src/main/java/org/springblade/modules/task/entity/TaskReportForRepairsEntity.java b/src/main/java/org/springblade/modules/task/entity/TaskReportForRepairsEntity.java index 91d4875..8775ed7 100644 --- a/src/main/java/org/springblade/modules/task/entity/TaskReportForRepairsEntity.java +++ b/src/main/java/org/springblade/modules/task/entity/TaskReportForRepairsEntity.java @@ -28,7 +28,6 @@ import org.springblade.core.mp.base.BaseEntity; import org.springblade.core.tenant.mp.TenantEntity; import org.springframework.format.annotation.DateTimeFormat; -import sun.rmi.runtime.Log; /** * 报事报修任务表 实体类 @@ -104,4 +103,32 @@ */ @ApiModelProperty(value = "确认意见") private String confirmNotion; + /** + * 经度 + */ + @ApiModelProperty(value = "经度") + private String lng; + /** + * 纬度 + */ + @ApiModelProperty(value = "纬度") + private String lat; + /** + * 事发地地址 + */ + @ApiModelProperty(value = "事发地地址") + private String address; + + + /** + * 临时用 1:已查看 2:未查看 + */ + @ApiModelProperty(value = "临时用 1:已查看 2:未查看") + private Integer viewType; + + /** + * 1:房屋 2:场所 + */ + @ApiModelProperty(value = "1:房屋 2:场所") + private Integer houseFlag; } -- Gitblit v1.9.3