43 lines
653 B
Plaintext
43 lines
653 B
Plaintext
|
|
package com.securityControl.task.domain.vo;
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设备信息
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class DeviceVo {
|
||
|
|
|
||
|
|
private String gbCode;//国标编码
|
||
|
|
|
||
|
|
private String puId;
|
||
|
|
|
||
|
|
private String macId;
|
||
|
|
|
||
|
|
private String devName;//设备名称
|
||
|
|
|
||
|
|
private String tCode;
|
||
|
|
|
||
|
|
private String tName;
|
||
|
|
|
||
|
|
private String twCode;
|
||
|
|
|
||
|
|
private String tdCode;
|
||
|
|
|
||
|
|
private String filePath;
|
||
|
|
|
||
|
|
private String state;
|
||
|
|
/**
|
||
|
|
* 存储事务id
|
||
|
|
*/
|
||
|
|
private String storageId;
|
||
|
|
|
||
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
|
private Date catchTime;
|
||
|
|
|
||
|
|
|
||
|
|
}
|