You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
/// <summary>
/// AGV已激活地图点位表
/// </summary>
public class AGVMapPoint
{
/// <summary>
/// 自增编号
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// 地图ID
/// </summary>
public string MapID { get; set; }
/// <summary>
/// 点位ID
/// </summary>
public string PointGuid { get; set; }
/// <summary>
/// 位置点类型 0普通 1⾼精度 2充电桩 3闲置点
/// </summary>
public string? PointType { get; set; }
/// <summary>
/// 点位名称
/// </summary>
public string? PointName { get; set; }
/// <summary>
/// 地图名称
/// </summary>
public string? MapName { get; set; }
}
}