package com.iailab.module.data.dev.dto;
|
|
import com.iailab.framework.common.validation.group.AddGroup;
|
import com.iailab.framework.common.validation.group.UpdateGroup;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Null;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年03月06日
|
*/
|
@Data
|
public class DevNvrDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Null(message="{id.null}", groups = AddGroup.class)
|
@NotNull(message="{id.require}", groups = UpdateGroup.class)
|
private String id;
|
|
/**
|
* 编码
|
*/
|
private String code;
|
|
/**
|
* 品牌
|
*/
|
private Integer brand;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* IP
|
*/
|
private String ip;
|
|
/**
|
* 端口
|
*/
|
private Integer port;
|
|
/**
|
* 用户名
|
*/
|
private String username;
|
|
/**
|
* 密码
|
*/
|
private String password;
|
|
/**
|
* 设备类型
|
*/
|
private String device;
|
|
/**
|
* 位置
|
*/
|
private String position;
|
|
/**
|
* 状态
|
*/
|
private Integer status;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建者
|
*/
|
private Long creator;
|
|
/**
|
* 创建时间
|
*/
|
private Date createDate;
|
|
/**
|
* 更新者
|
*/
|
private Long updater;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateDate;
|
}
|