设备在线状态逻辑调整,支付下发指令参数调整等
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package com.fastbee.iot.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
@ -155,15 +156,19 @@ public class DeviceReportInfo extends BaseEntity
|
||||
@ApiModelProperty("纬度")
|
||||
private String latitude;
|
||||
|
||||
//----------------------------------------------------------业务字段-----------------------------------------------------------
|
||||
/** 是否自动审核 */
|
||||
private Boolean autoReview ;
|
||||
|
||||
/** 设备类型:1.水电双计 2.流量计 */
|
||||
@Excel(name = "设备类型:1.水电双计 2.流量计")
|
||||
@ApiModelProperty("设备类型:1.水电双计 2.流量计")
|
||||
private Integer type;
|
||||
|
||||
//----------------------------------------------------------业务字段-----------------------------------------------------------
|
||||
/** 是否自动审核 */
|
||||
@TableField(exist = false)
|
||||
private Boolean autoReview ;
|
||||
|
||||
/** 设备类型:1.水电双计 2.流量计 */
|
||||
private String searchValue;
|
||||
|
||||
// @TableField(exist = false)
|
||||
private Integer onLine;//0离线,1在线
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user