123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- package com.ruoyi.manage.domain;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import javax.validation.constraints.NotNull;
- /**
- * 通道管理对象 channel_number
- *
- * @author boman
- * @date 2025-05-07
- */
- public class ChannelNumber extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 通道ID
- */
- private Long channelId;
- /**
- * 设备Ip
- */
- private String equipmentIp;
- /**
- * 设备ID
- */
- @NotNull
- private Long equipmentId;
- /**
- * 设备编号
- */
- @Excel(name = "设备编号")
- private String equipmentNum;
- /**
- * 设备名称
- */
- @Excel(name = "设备名称")
- private String equipmentName;
- /**
- * 通道编号
- */
- @Excel(name = "通道编号")
- @NotNull
- private String channelNum;
- /**
- * 预览端口
- */
- private String port;
- /**
- * 视频地址
- */
- @Excel(name = "视频地址")
- private String videoAddress;
- /**
- * 账号
- */
- private String account;
- /**
- * 密码
- */
- private String password;
- /**
- * 探测协议类型
- */
- @Excel(name = "探测协议类型")
- private String protocolType;
- /**
- * 通道描述
- */
- @Excel(name = "通道描述")
- private String channelDetails;
- /**
- * 删除标志(0代表存在 1代表删除)
- */
- private String delFlag;
- /**
- * 是否设置过参数 N Y 不在数据库中
- */
- private String isChannel;
- /**
- * 参数设置
- */
- private ParameterSet parameterSet;
- public String getEquipmentIp() {
- return equipmentIp;
- }
- public void setEquipmentIp(String equipmentIp) {
- this.equipmentIp = equipmentIp;
- }
- public ParameterSet getParameterSet() {
- return parameterSet;
- }
- public void setParameterSet(ParameterSet parameterSet) {
- this.parameterSet = parameterSet;
- }
- public String getPort() {
- return port;
- }
- public void setPort(String port) {
- this.port = port;
- }
- public String getIsChannel() {
- return isChannel;
- }
- public void setIsChannel(String isChannel) {
- this.isChannel = isChannel;
- }
- public String getEquipmentNum() {
- return equipmentNum;
- }
- public void setEquipmentNum(String equipmentNum) {
- this.equipmentNum = equipmentNum;
- }
- public String getEquipmentName() {
- return equipmentName;
- }
- public void setEquipmentName(String equipmentName) {
- this.equipmentName = equipmentName;
- }
- public Long getEquipmentId() {
- return equipmentId;
- }
- public void setEquipmentId(Long equipmentId) {
- this.equipmentId = equipmentId;
- }
- public String getAccount() {
- return account;
- }
- public void setAccount(String account) {
- this.account = account;
- }
- public String getPassword() {
- return password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- public void setChannelId(Long channelId) {
- this.channelId = channelId;
- }
- public Long getChannelId() {
- return channelId;
- }
- public void setChannelNum(String channelNum) {
- this.channelNum = channelNum;
- }
- public String getChannelNum() {
- return channelNum;
- }
- public void setVideoAddress(String videoAddress) {
- this.videoAddress = videoAddress;
- }
- public String getVideoAddress() {
- return videoAddress;
- }
- public void setProtocolType(String protocolType) {
- this.protocolType = protocolType;
- }
- public String getProtocolType() {
- return protocolType;
- }
- public void setChannelDetails(String channelDetails) {
- this.channelDetails = channelDetails;
- }
- public String getChannelDetails() {
- return channelDetails;
- }
- public void setDelFlag(String delFlag) {
- this.delFlag = delFlag;
- }
- public String getDelFlag() {
- return delFlag;
- }
- @Override
- public String toString() {
- return "ChannelNumber{" +
- "channelId=" + channelId +
- ", equipmentIp='" + equipmentIp + '\'' +
- ", equipmentId=" + equipmentId +
- ", equipmentNum='" + equipmentNum + '\'' +
- ", equipmentName='" + equipmentName + '\'' +
- ", channelNum='" + channelNum + '\'' +
- ", port='" + port + '\'' +
- ", videoAddress='" + videoAddress + '\'' +
- ", account='" + account + '\'' +
- ", password='" + password + '\'' +
- ", protocolType='" + protocolType + '\'' +
- ", channelDetails='" + channelDetails + '\'' +
- ", delFlag='" + delFlag + '\'' +
- ", isChannel='" + isChannel + '\'' +
- ", parameterSet=" + parameterSet +
- '}';
- }
- }
|