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.
171 lines
4.1 KiB
C#
171 lines
4.1 KiB
C#
|
2 years ago
|
|
||
|
|
//-----------------------------------------------------------------------
|
||
|
|
//<copyright>
|
||
|
|
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
||
|
|
// * version : 4.0.30319.42000
|
||
|
|
// * author : khd by t4-2
|
||
|
|
// </copyright>
|
||
|
|
//-----------------------------------------------------------------------
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
|
||
|
|
namespace Khd.Core.Domain.Models
|
||
|
|
{
|
||
|
|
|
||
|
|
[Table("wcs_task")]
|
||
|
|
public class WcsTask
|
||
|
|
{
|
||
|
|
|
||
|
|
[Key]
|
||
|
|
[Column("objid")]
|
||
|
|
public Guid objid { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 流水号
|
||
|
|
/// </summary>
|
||
|
|
[Column("serial_no")]
|
||
|
|
public string serialNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 设备编号
|
||
|
|
/// </summary>
|
||
|
|
[Column("equipment_no")]
|
||
|
|
public string equipmentNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 容器号(托盘或者箱号)
|
||
|
|
/// </summary>
|
||
|
|
[Column("customer_no")]
|
||
|
|
public string customerNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 任务类型,字典表
|
||
|
|
/// </summary>
|
||
|
|
[Column("task_type")]
|
||
|
|
public int? taskType { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 任务状态,字典表
|
||
|
|
/// </summary>
|
||
|
|
[Column("task_status")]
|
||
|
|
public int? taskStatus { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 物料ID
|
||
|
|
/// </summary>
|
||
|
|
[Column("material_id")]
|
||
|
|
public long? materialId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 物料号
|
||
|
|
/// </summary>
|
||
|
|
[Column("material_no")]
|
||
|
|
public int? materialNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 数量
|
||
|
|
/// </summary>
|
||
|
|
[Column("qty")]
|
||
|
|
public int? qty { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 起始点编号
|
||
|
|
/// </summary>
|
||
|
|
[Column("start_point_no")]
|
||
|
|
public string startPointNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 起始点id
|
||
|
|
/// </summary>
|
||
|
|
[Column("start_point_id")]
|
||
|
|
public Guid startPointId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 当前点编号
|
||
|
|
/// </summary>
|
||
|
|
[Column("curr_point_no")]
|
||
|
|
public string currPointNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 当前点id
|
||
|
|
/// </summary>
|
||
|
|
[Column("curr_point_id")]
|
||
|
|
public Guid currPointId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 结束点编号
|
||
|
|
/// </summary>
|
||
|
|
[Column("end_point_no")]
|
||
|
|
public string endPointNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 结束点id
|
||
|
|
/// </summary>
|
||
|
|
[Column("end_point_id")]
|
||
|
|
public Guid endPointId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 所属楼层
|
||
|
|
/// </summary>
|
||
|
|
[Column("floor_no")]
|
||
|
|
public int? floorNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否可用 0:不可用 1:可用
|
||
|
|
/// </summary>
|
||
|
|
[Column("use_flag")]
|
||
|
|
public int? useFlag { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 创建者
|
||
|
|
/// </summary>
|
||
|
|
[Column("create_by")]
|
||
|
|
public string createBy { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 创建时间
|
||
|
|
/// </summary>
|
||
|
|
[Column("create_time")]
|
||
|
|
public DateTime? createTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 更新者
|
||
|
|
/// </summary>
|
||
|
|
[Column("update_by")]
|
||
|
|
public string updateBy { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 更新时间
|
||
|
|
/// </summary>
|
||
|
|
[Column("update_time")]
|
||
|
|
public DateTime? updateTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备用字段1
|
||
|
|
/// </summary>
|
||
|
|
[Column("ud1")]
|
||
|
|
public string ud1 { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备用字段2
|
||
|
|
/// </summary>
|
||
|
|
[Column("ud2")]
|
||
|
|
public string ud2 { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备用字段3
|
||
|
|
/// </summary>
|
||
|
|
[Column("ud3")]
|
||
|
|
public string ud3 { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备注
|
||
|
|
/// </summary>
|
||
|
|
[Column("remark")]
|
||
|
|
public string remark { get; set; }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|