济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

130 lines
5.1 KiB

package com.zc.business.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.annotation.Excel;
import com.zc.business.utils.StakeMarkUtils;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.util.ObjectUtils;
import com.ruoyi.common.annotation.Excel.ColumnType;
import java.util.Date;
@Data
@ApiModel(value = "DcDevice", description = "设备实体")
public class DcDevice {
public static final Integer UNUSEDSTATE = 0;
public static final Integer USEOFSTATE = 1;
// 异常的
public static final String ABNORMAL = "0";
// 正常的
public static final String NORMAL = "1";
// 离线状态
public static final String OFFLINE = "0";
// 在线状态
public static final String ONLINE = "1";
@ApiModelProperty("设备名称")
@Excel(name = "设备名称")
private String deviceName;
@ApiModelProperty("ID")
//@Excel(name = "设备ID")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@ApiModelProperty("物联设备ID")
@Excel(name = "物联设备ID")
private String iotDeviceId;
@ApiModelProperty("所属机构")
//@Excel(name = "所属机构")
private Long groupId;
@ApiModelProperty("产品ID")
//@Excel(name = "产品ID")
private Long productId;
@ApiModelProperty("桩号")
@Excel(name = "桩号")
private String stakeMark;
@ApiModelProperty("方向1-上行(菏泽方向),2-中,3-下行(济南方向)")
@Excel(name = "方向", readConverterExp = "1=菏泽方向,3=济南方向")
private String direction;
@ApiModelProperty("设备编号")
@Excel(name = "设备编号")
private String deviceCode;
@ApiModelProperty("设备类型")
@Excel(name = "设备类型", readConverterExp = "1=摄像机,2=可变信息标志,3=气象监测器,4=出口诱导灯,5=路段语音广播,6=护栏碰撞,7=毫米波雷达,8=合流区预警,9=智慧锥桶,10=激光疲劳唤醒,11=一类交通量调查站,12=行车诱导,13=智能设备箱,14=光线在线监测,15=太阳能板,16=远端机")
private String deviceType;
@ApiModelProperty("所属网段")
@Excel(name = "所属网段")
private String networkSegment;
@ApiModelProperty("设备图片")
@Excel(name = "设备图片", cellType = ColumnType.IMAGE)
private String deviceImg;
@ApiModelProperty("安装日期")
@Excel(name = "安装日期", dateFormat = "yyyy-MM-dd")
private Date installationDate;
@ApiModelProperty("生产日期")
@Excel(name = "生产日期", dateFormat = "yyyy-MM-dd")
private Date productionDate;
@ApiModelProperty("使用年限")
@Excel(name = "使用年限")
private String durableYears;
@ApiModelProperty("安装位置")
@Excel(name = "安装位置")
private String installationSite;
@ApiModelProperty("设备状态")
@Excel(name = "设备状态", readConverterExp = "0=异常,1=正常")
private String deviceState;
@ApiModelProperty("使用状态")
@Excel(name = "使用状态", readConverterExp = "0=使用中,1=未使用")
private Integer useState;
@ApiModelProperty("其他配置")
@Excel(name = "其他配置")
private String otherConfig;
@ApiModelProperty("备注")
@Excel(name = "备注")
private String remark;
@ApiModelProperty("设施归属类型(0:默认1: 道路沿线2:桥梁3: 隧道4:收费广场5: 收费站6: 服务区等")
@Excel(name = "设施归属类型", readConverterExp = "0=默认,1=道路沿线,2=桥梁,3=隧道,4=收费广场,5=收费站,6=服务区")
private String facilitiesType;
@ApiModelProperty("设备ip")
@Excel(name = "设备ip")
private String deviceIp;
@ApiModelProperty("范围桩号")
@Excel(name = "范围桩号")
private String stakeMarkRange;
@ApiModelProperty("创建时间")
@Excel(name = "创建时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
@ApiModelProperty("修改时间")
@Excel(name = "修改时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
@ApiModelProperty("子类型")
@Excel(name = "子类型", readConverterExp = "1-1=高清网络枪型固定摄像机,1-2=高清网络球形摄像机,1-3=桥下高清网络球形摄像机,1-4=360°全景摄像机,1-5=180°全景摄像机,2-1=门架式可变信息标志,2-2=站前可变信息标志,2-3=雨棚可变信息标志,2-4=站前悬臂式可变信息标")
private String childType;
@TableField(exist = false)
private String longitude;
@TableField(exist = false)
private String sumAll;
@TableField(exist = false)
private String latitude;
//设备厂商
@TableField(exist = false)
private String manufacturer;
public Integer stakeMarkToInt() {
return StakeMarkUtils.stakeMarkToInt(stakeMark);
}
public String getRealType() {
if (ObjectUtils.isEmpty(this.childType)) {
return this.deviceType;
} else {
return this.childType;
}
}
}