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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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 ; }
}
}