using SqlSugar; namespace WcsMain.DataBase.TableEntity; /// /// 联表查询 /// public class JoinAppConveyTaskAndAppConveyStand { /// /// 任务号 /// [SugarColumn(ColumnName = "task_id")] public string? TaskId { get; set; } /// /// 任务组 /// [SugarColumn(ColumnName = "task_group")] public string? TaskGroup { get; set; } /// /// 载具号 /// [SugarColumn(ColumnName = "vehicle_no")] public string? VehicleNo { get; set; } /// /// 任务类型 /// [SugarColumn(ColumnName = "task_type")] public int? TaskType { get; set; } /// /// 任务状态 /// [SugarColumn(ColumnName = "task_status")] public int? TaskStatus { get; set; } /// /// 点位 /// [SugarColumn(ColumnName = "location")] public string? Location { get; set; } /// /// 实际到达的点位 /// [SugarColumn(ColumnName = "arrive_location")] public string? ArriveLocation { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_person")] public string? CreatePerson { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 移栽时间 /// [SugarColumn(ColumnName = "move_time")] public DateTime? MoveTime { get; set; } /// /// 完成时间 /// [SugarColumn(ColumnName = "complete_time")] public DateTime? CompleteTime { get; set; } /// /// 备注信息 /// [SugarColumn(ColumnName = "remark")] public string? Remark { get; set; } /// /// 站台号 /// [SugarColumn(ColumnName = "stand_id")] public string? StandId { get; set; } /// /// 站台类型 /// [SugarColumn(ColumnName = "stand_type")] public int? StandType { get; set; } }