namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 : /// 创 建 人 :yangxiao /// 创建时间 : 2023/7/27 9:35:27 /// 描 述 : /// [SugarTable("agv_line")] public class AgvLineEntity : DEntityBase { /// /// 自定义编码 /// public string Code { get; set; } /// /// 线路名称 /// public string Name { get; set; } /// /// 开始点位 /// public string StartPointId { get; set; } /// /// 结束点位 /// public string EndPointId { get; set; } /// /// 描述 /// public string Description { get; set; } } }