You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.0 KiB
117 lines
3.0 KiB
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace WMS_GIRAF_Interface.Entities;
|
|
|
|
[Table("MANAGE_MAIN")]
|
|
public class MANAGE_MAIN
|
|
{
|
|
///<sumary>
|
|
/// 任务编号
|
|
///</sumary>
|
|
[Column("MANAGE_ID")]
|
|
public int MANAGE_ID { get; set; }
|
|
///<sumary>
|
|
/// 终点
|
|
///</sumary>
|
|
[Column("destinationId")]
|
|
public string DESTINATIONID { get; set; }
|
|
///<sumary>
|
|
/// 计划编号
|
|
///</sumary>
|
|
[Column("PLAN_ID")]
|
|
public int PLAN_ID { get; set; }
|
|
///<sumary>
|
|
/// 需求号
|
|
///</sumary>
|
|
[Column("requestNumber")]
|
|
public string requestNumber { get; set; }
|
|
///<sumary>
|
|
/// 任务类型编号
|
|
///</sumary>
|
|
[Column("MANAGE_TYPE_CODE")]
|
|
public string MANAGE_TYPE_CODE { get; set; }
|
|
///<sumary>
|
|
/// 任务状态
|
|
///</sumary>
|
|
[Column("MANAGE_STATUS")]
|
|
public string MANAGE_STATUS { get; set; }
|
|
///<sumary>
|
|
/// 托盘条码
|
|
///</sumary>
|
|
[Column("STOCK_BARCODE")]
|
|
public string STOCK_BARCODE { get; set; }
|
|
|
|
///<sumary>
|
|
/// 物料尺寸
|
|
///</sumary>
|
|
[Column("CELL_MODEL")]
|
|
public string CELL_MODEL { get; set; }
|
|
///<sumary>
|
|
/// 开始位置
|
|
///</sumary>
|
|
[Column("START_CELL_ID")]
|
|
public int START_CELL_ID { get; set; }
|
|
///<sumary>
|
|
/// 终止位置
|
|
///</sumary>
|
|
[Column("END_CELL_ID")]
|
|
public int END_CELL_ID { get; set; }
|
|
///<sumary>
|
|
/// 操作者
|
|
///</sumary>
|
|
[Column("MANAGE_OPERATOR")]
|
|
public string MANAGE_OPERATOR { get; set; }
|
|
///<sumary>
|
|
/// 开始时间
|
|
///</sumary>
|
|
[Column("MANAGE_BEGIN_TIME")]
|
|
public string MANAGE_BEGIN_TIME { get; set; }
|
|
///<sumary>
|
|
/// 结束时间
|
|
///</sumary>
|
|
[Column("MANAGE_END_TIME")]
|
|
public string MANAGE_END_TIME { get; set; }
|
|
///<sumary>
|
|
/// 任务等级
|
|
///</sumary>
|
|
[Column("MANAGE_LEVEL")]
|
|
public string MANAGE_LEVEL { get; set; }
|
|
///<sumary>
|
|
/// 备注
|
|
///</sumary>
|
|
[Column("MANAGE_REMARK")]
|
|
public string MANAGE_REMARK { get; set; }
|
|
///<sumary>
|
|
/// 机械有问题请求保持
|
|
///</sumary>
|
|
[Column("keepRequestInMemoryEventIfMechanicalIssue")]
|
|
public bool keepRequestInMemoryEventIfMechanicalIssue { get; set; }
|
|
///<sumary>
|
|
/// 缺少产品持续叫料
|
|
///</sumary>
|
|
[Column("keepRequestInMemoryEventIfLackOfProductIssue")]
|
|
public bool keepRequestInMemoryEventIfLackOfProductIssue { get; set; }
|
|
/// <summary>
|
|
/// 目标出库时间
|
|
/// </summary>
|
|
[Column("TargetOutputDateInUtc")]
|
|
public DateTime? TargetOutputDateInUtc { get; set; }
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
[Column("LOTNUMBER")]
|
|
public string LOTNUMBER { get; set; }
|
|
///// <summary>
|
|
/// 产品类型
|
|
/// </summary>
|
|
[Column("POPULATIONNUMBER")]
|
|
public string POPULATIONNUMBER { get; set; }
|
|
|
|
///<sumary>
|
|
/// 调用接口
|
|
///</sumary>
|
|
[Column("INTERFACE")]
|
|
public string INTERFACE { get; set; }
|
|
|
|
}
|