|
@@ -64,7 +64,6 @@ public class ProductionResource extends Entity<Long> {
|
|
|
private String advUrl;
|
|
|
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 区域ID
|
|
|
*/
|
|
@@ -291,36 +290,41 @@ public class ProductionResource extends Entity<Long> {
|
|
|
private Long opsUserId;
|
|
|
|
|
|
@ApiModelProperty(value = "区域地址")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String areaIds;
|
|
|
|
|
|
@ApiModelProperty(value = "场地名称")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String placeName;
|
|
|
|
|
|
@ApiModelProperty(value = "部门名称")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String lineDesc;
|
|
|
|
|
|
@ApiModelProperty(value = "企业名称")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String tenantDesc;
|
|
|
|
|
|
@ApiModelProperty(value = "模型图片")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String pic;
|
|
|
|
|
|
@ApiModelProperty(value = "场景地址")
|
|
|
- @TableField(exist=false)
|
|
|
+ @TableField(exist = false)
|
|
|
private String address;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否绑定")
|
|
|
+ @TableField(value = "is_bound", condition = EQUAL)
|
|
|
+ private String idBound;
|
|
|
+
|
|
|
+
|
|
|
@Builder
|
|
|
public ProductionResource(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser,
|
|
|
- Long compnayId, String moduleId, String areaId, String name, String resourcesCategory,
|
|
|
- String code, String status, String onlineStatus, String remark, String ip, String port,
|
|
|
- Integer gatherTaskId, Float incomeToday, Integer exceptionOrderNum, Integer cacheStorgeNum, Integer maxSpeed, String capitalNo,
|
|
|
- String capitalName, String capitalType, String modeSpecification, String capitalPrice, String productionDate, String productionNo,
|
|
|
- String manufacturer, Integer programNum, Long orgId) {
|
|
|
+ Long compnayId, String moduleId, String areaId, String name, String resourcesCategory,
|
|
|
+ String code, String status, String onlineStatus, String remark, String ip, String port,
|
|
|
+ Integer gatherTaskId, Float incomeToday, Integer exceptionOrderNum, Integer cacheStorgeNum, Integer maxSpeed, String capitalNo,
|
|
|
+ String capitalName, String capitalType, String modeSpecification, String capitalPrice, String productionDate, String productionNo,
|
|
|
+ String manufacturer, Integer programNum, Long orgId) {
|
|
|
this.id = id;
|
|
|
this.createTime = createTime;
|
|
|
this.createUser = createUser;
|