Commit 6251f898 by lzy

空间编辑

parent a8b90e59
package com.makeit.entity.platform.space; package com.makeit.entity.platform.space;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.makeit.common.entity.BaseBusEntity; import com.makeit.common.entity.BaseBusEntity;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
...@@ -25,12 +27,15 @@ public class PlatSpace extends BaseBusEntity { ...@@ -25,12 +27,15 @@ public class PlatSpace extends BaseBusEntity {
@ApiModelProperty(value = "空间类型 1:小区/社区/街道 2:楼栋 3:单元 4 楼层") @ApiModelProperty(value = "空间类型 1:小区/社区/街道 2:楼栋 3:单元 4 楼层")
private String type; private String type;
@TableField(updateStrategy = FieldStrategy.IGNORED)
@ApiModelProperty(value = "完整地址") @ApiModelProperty(value = "完整地址")
private String address; private String address;
@TableField(updateStrategy = FieldStrategy.IGNORED)
@ApiModelProperty(value = "经度") @ApiModelProperty(value = "经度")
private String longitude; private String longitude;
@TableField(updateStrategy = FieldStrategy.IGNORED)
@ApiModelProperty(value = "纬度") @ApiModelProperty(value = "纬度")
private String latitude; private String latitude;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment