You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
522 B
28 lines
522 B
namespace Cis.Application.Tb;
|
|
|
|
[SugarTable(TbInfo.TbPtzCameraTbName)]
|
|
[Tenant(TbInfo.DbName)]
|
|
public class TbPtzCamera
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Type { get; set; }
|
|
|
|
public string Ip { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string User { get; set; }
|
|
|
|
public string Pass { get; set; }
|
|
|
|
public int CameraId { get; set; }
|
|
|
|
public double PanPosition { get; set; }
|
|
|
|
public double TitlePosition { get; set; }
|
|
|
|
public double ZoomPosition { get; set; }
|
|
|
|
public byte Request { get; set; }
|
|
}
|