76 lines
1.4 KiB
Plaintext
76 lines
1.4 KiB
Plaintext
package com.sercurityControl.proteam.domain;
|
|
|
|
import com.securityControl.common.core.constant.annotation.Excel;
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author bonus
|
|
* @data 2023/3/17 11:10
|
|
* @description 设备分配
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class DeviceMachineEntity {
|
|
/**
|
|
* 建管单位
|
|
*/
|
|
@Excel(name = "建管单位")
|
|
private String org;
|
|
/**
|
|
* 球机名称
|
|
*/
|
|
@Excel(name = "球机名称")
|
|
private String deviceName;
|
|
/**
|
|
* 负责人名称
|
|
*/
|
|
@Excel(name = "负责人名称")
|
|
private String fzrName;
|
|
/**
|
|
* 电话号码
|
|
*/
|
|
@Excel(name = "电话号码")
|
|
private String phone;
|
|
/**
|
|
* MAC地址
|
|
*/
|
|
@Excel(name = "MAC地址")
|
|
private String mac;
|
|
/**
|
|
* puId
|
|
*/
|
|
@Excel(name = "PUID")
|
|
private String puId;
|
|
/**
|
|
* 在线状态 0不在线 1在线
|
|
*/
|
|
@Excel(name = "设备状态")
|
|
private String state;
|
|
/**
|
|
* 删除状态 0未删除 1删除
|
|
*/
|
|
private String isFlag;
|
|
/**
|
|
* 组织机构集合
|
|
*/
|
|
private List<String> orgList;
|
|
/**
|
|
* 节点
|
|
*/
|
|
private String nodeIndex;
|
|
/**
|
|
* 节点名称
|
|
**/
|
|
private String nodeName;
|
|
|
|
private String page;
|
|
|
|
private String limit;
|
|
}
|