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.
34 lines
661 B
34 lines
661 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class AssetPosition |
|
{ |
|
public long Id { get; set; } |
|
|
|
/// <summary> |
|
/// 建筑物id |
|
/// </summary> |
|
public long ConstId { get; set; } |
|
|
|
/// <summary> |
|
/// 项目id |
|
/// </summary> |
|
public long ProjectId { get; set; } |
|
|
|
/// <summary> |
|
/// 0设备部署,1逃生路线 |
|
/// </summary> |
|
public short Route { get; set; } |
|
|
|
/// <summary> |
|
/// 逃生路线名称 |
|
/// </summary> |
|
public string? Name { get; set; } |
|
|
|
/// <summary> |
|
/// 定位地图id |
|
/// </summary> |
|
public long? MapId { get; set; } |
|
}
|
|
|