namespace Cis.Application.Cm;
///
/// 标记标签表
///
[SugarTable(CmInfo.CmMarkLabelTbName, CmInfo.CmMarkLabelTbDesc)]
[Tenant(CmInfo.DbName)]
public class CmMarkLabel : EntityBase
{
///
/// 名称
///
[SugarColumn(ColumnDescription = "名称", Length = 64)]
public string Name { get; set; }
///
/// Pan 位置
///
[SugarColumn(ColumnDescription = "Pan位置")]
public double PanPosition { get; set; }
///
/// Tilt 位置
///
[SugarColumn(ColumnDescription = "Tilt位置")]
public double TiltPosition { get; set; }
///
/// Zoom 位置
///
[SugarColumn(ColumnDescription = "Zoom位置")]
public double ZoomPosition { get; set; }
///
/// 备注
///
[SugarColumn(ColumnDescription = "备注", Length = 256)]
[MaxLength(256)]
public string Remark { get; set; }
///
/// 相机 Id
///
[SugarColumn(ColumnDescription = "相机Id")]
public long CbCameraId { get; set; }
///
/// 标记组 Id
///
[SugarColumn(ColumnDescription = "标记组Id")]
public long CmMarkGroupId { get; set; }
}