package com.gkhy.safePlatform.account.model.dto.req; public class AddAndUpdateCameraDTO { private Long id; //事业部ID private Long bizDepId; //设备警号,调视频接口用 private String deviceNo; //设备名称,跟州平台上面显示的名称一致 private String name; //简称,内部管理使用 private String shortName; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getBizDepId() { return bizDepId; } public void setBizDepId(Long bizDepId) { this.bizDepId = bizDepId; } public String getDeviceNo() { return deviceNo; } public void setDeviceNo(String deviceNo) { this.deviceNo = deviceNo; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getShortName() { return shortName; } public void setShortName(String shortName) { this.shortName = shortName; } }