namespace Cis.Application.Cb; /// /// 相机参数表 /// [SugarTable(CbInfo.CbCameraParamsTbName, CbInfo.CbCameraParamsTbDesc)] [Tenant(CbInfo.DbName)] public class CbCameraParams : EntityBase { /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 64)] [Required, MaxLength(64)] public string Name { get; set; } /// /// 相机厂商 /// [SugarColumn(ColumnDescription = "相机厂商")] [Required] public int Manufactor { get; set; } /// /// sdk 端口 /// [SugarColumn(ColumnDescription = "sdk端口")] [Required] public int SdkPort { get; set; } /// /// 相机类型 /// [SugarColumn(ColumnDescription = "相机类型")] [Required] public int Type { get; set; } /// /// FocusX /// [SugarColumn(ColumnDescription = "FocusX")] [Required] public double FocusX { get; set; } /// /// FocusY /// [SugarColumn(ColumnDescription = "FocusY")] [Required] public double FocusY { get; set; } /// /// zoom变化函数 /// [SugarColumn(ColumnDescription = "zoom变化函数", Length = 256)] [Required, MaxLength(256)] public string ZoomVaryFunc { get; set; } }