using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Model.Models.AGV { [SugarTable("task_call", "AGV任务表")] public class task_call { /// /// id /// public int d_task_id { get; set; } /// /// AGV任务类型 /// public int d_task_type { get; set; } /// /// 楼层 /// public int d_floor { get; set; } /// /// 点位 /// public int d_priority { get; set; } /// /// /// public int d_start_rfid { get; set; } /// /// 起点 /// public string d_involed1 { get; set; } /// /// 终点 /// public string d_involed2{ get; set; } public int d_involed3{ get; set; } public int d_involed4{ get; set; } public int? d_involed5{ get; set; } public int d_involed6{ get; set; } } }