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.
152 lines
5.0 KiB
C#
152 lines
5.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
|
|
namespace Sln.Wcs.Model.Domain
|
|
{
|
|
[SugarTable("wcs_subtask_instance")]
|
|
public class SubTaskInstance
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主任务编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "maintask_code", ColumnDescription = "主任务编号")]
|
|
public string MaintaskCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "equipment_no", ColumnDescription = "设备编号")]
|
|
public string EquipmentNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘RFID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "pallet_info_code", ColumnDescription = "托盘RFID")]
|
|
public string PalletInfoCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类型,字典表
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "task_type", ColumnDescription = "任务类型,字典表")]
|
|
public int? TaskType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务状态,字典表
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "task_status", ColumnDescription = "任务状态,字典表")]
|
|
public int? TaskStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始点编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "start_agvpoint", ColumnDescription = "起始点编号")]
|
|
public string StartAGVPoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始点id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "start_point_id", ColumnDescription = "起始点id")]
|
|
public string StartPointId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前点编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "curr_agvpoint", ColumnDescription = "当前点编号")]
|
|
public string CurrAGVPoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前点id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "curr_point_id", ColumnDescription = "当前点id")]
|
|
public string CurrPointId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下一点编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "next_agvpoint", ColumnDescription = "下一点编号")]
|
|
public string NextAGVPoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下一点id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "next_point_id", ColumnDescription = "下一点id")]
|
|
public string NextPointId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 终点编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "end_agvpoint", ColumnDescription = "终点编号")]
|
|
public string EndAGVPoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// 终点id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "end_point_id", ColumnDescription = "终点id")]
|
|
public string EndPointId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否可用 0:不可用 1:可用
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "use_flag", ColumnDescription = "是否可用")]
|
|
public int? UseFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// AGV返回code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "taskCode", ColumnDescription = "Agv返回code")]
|
|
public string TaskCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否已删除;0未删除、1需要删除和取消agv任务、2需要删除、取消agv任务、创建去异常库位的任务
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "is_delete", ColumnDescription = "是否已删除")]
|
|
public int? IsDelete { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_by", ColumnDescription = "创建人")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time", ColumnDescription = "创建时间")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_by", ColumnDescription = "更新人")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_time", ColumnDescription = "更新时间")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "task_name", ColumnDescription = "任务名称")]
|
|
public string TaskName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 终点机台编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "machine_code", ColumnDescription = "终点机台编号")]
|
|
public string MachineCode { get; set; }
|
|
}
|
|
}
|