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.
64 lines
1.6 KiB
64 lines
1.6 KiB
namespace Cis.Application.Cm;
|
|
|
|
/// <summary>
|
|
/// 标记标签表
|
|
/// </summary>
|
|
[SugarTable(CmInfo.CmMarkLabelTbName, CmInfo.CmMarkLabelTbDesc)]
|
|
[Tenant(CmInfo.DbName)]
|
|
public class CmMarkLabel : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// 相机 Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "相机Id")]
|
|
public long CbCameraId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标记组 Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标记组Id")]
|
|
public long CmMarkGroupId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "名称", Length = 64)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Pan 坐标
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Pan坐标")]
|
|
public double PanPosition { get; set; }
|
|
|
|
/// <summary>
|
|
/// Tilt 坐标
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Tilt坐标")]
|
|
public double TiltPosition { get; set; }
|
|
|
|
/// <summary>
|
|
/// Zoom 坐标
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Zoom坐标")]
|
|
public double ZoomPosition { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "视频宽度")]
|
|
public double VideoWidth { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "视频高度")]
|
|
public double VideoHeight { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "画布 left 距离比例")]
|
|
public double CanvasLeftRatio { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "画布 top 距离比例")]
|
|
public double CanvasTopRatio { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", Length = 256)]
|
|
[MaxLength(256)]
|
|
public string Remark { get; set; }
|
|
}
|