|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ktg.iscs.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
@@ -28,6 +29,10 @@ public class IsMapPoint extends BaseBean
|
|
|
@Excel(name = "地图名称")
|
|
|
private Long mapId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "地图名称")
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String mapName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "地图类型(1岗位; 2锁定站)")
|
|
|
@Excel(name = "地图类型", readConverterExp = "1=岗位;,2=锁定站")
|
|
|
private String mapType;
|
|
|
@@ -36,6 +41,10 @@ public class IsMapPoint extends BaseBean
|
|
|
@Excel(name = "实体id")
|
|
|
private Long entityId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "实体NAME")
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String entityName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "x坐标")
|
|
|
@Excel(name = "x坐标")
|
|
|
private String x;
|
|
|
@@ -44,12 +53,7 @@ public class IsMapPoint extends BaseBean
|
|
|
@Excel(name = "y坐标")
|
|
|
private String y;
|
|
|
|
|
|
- @ApiModelProperty(value = "(x,y)")
|
|
|
- @Excel(name = "(x,y)")
|
|
|
- private String xy;
|
|
|
-
|
|
|
@ApiModelProperty(value = "删除标志(0代表存在 2代表删除)")
|
|
|
private String delFlag;
|
|
|
|
|
|
-
|
|
|
}
|