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.
52 lines
1.2 KiB
52 lines
1.2 KiB
2 years ago
|
namespace Cis.Application.Cm;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标记标签表
|
||
|
/// </summary>
|
||
|
[SugarTable(CmInfo.CmMarkLabelTbName, CmInfo.CmMarkLabelTbDesc)]
|
||
|
[Tenant(CmInfo.DbName)]
|
||
|
public class CmMarkLabel : EntityBase
|
||
|
{
|
||
|
/// <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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 256)]
|
||
|
[MaxLength(256)]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 相机 Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "相机Id")]
|
||
|
public long CbCameraId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标记组 Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "标记组Id")]
|
||
|
public long CmMarkGroupId { get; set; }
|
||
|
}
|