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