using Microsoft.EntityFrameworkCore.Metadata.Internal;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CMS.Plugin.HIAWms.Domain.WmsInOutStockOrder
|
{
|
/// <summary>
|
/// 出入库单据
|
/// </summary>
|
public class WmsInOutOrder
|
{
|
/// <summary>
|
/// 单据编号
|
/// </summary>
|
public string OrderNo { get; set; }
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
public string? MaterialName { get; set; }
|
|
/// <summary>
|
/// 物料件号
|
/// </summary>
|
public string MaterialNo { get; set; }
|
|
/// <summary>
|
/// 关联计划编号
|
/// </summary>
|
[SugarColumn(ColumnName = "PlanNo", ColumnDescription = "关联计划编号", Length = 32)]
|
public string? PlanNo { get; set; }
|
|
/// <summary>
|
/// 操作类型
|
/// </summary>
|
[SugarColumn(ColumnName = "StockType", ColumnDescription = "操作类型")]
|
//public OperationType StockType { get; set; }
|
public StockType StockType { get; set; }
|
|
/// <summary>
|
/// 容器编号
|
/// </summary>
|
[SugarColumn(ColumnName = "ContainerNo", ColumnDescription = "容器编号", Length = 32)]
|
public string? ContainerNo { get; set; }
|
|
/// <summary>
|
/// 机型
|
/// </summary>
|
[SugarColumn(ColumnName = "MaterialModel", ColumnDescription = "机型", Length = 32)]
|
public string? MaterialModel { get; set; }
|
|
/// <summary>
|
/// 下发数量
|
/// </summary>
|
[SugarColumn(ColumnName = "DistributeNumber", ColumnDescription = "下发数量")]
|
public int? DistributeNumber { get; set; }
|
|
/// <summary>
|
/// 完成数量
|
/// </summary>
|
[SugarColumn(ColumnName = "CompleteNumber", ColumnDescription = "完成数量")]
|
public int? CompleteNumber { get; set; }
|
|
/// <summary>
|
/// 异常数量
|
/// </summary>
|
[SugarColumn(ColumnName = "ExceptNumber", ColumnDescription = "异常数量")]
|
public int? ExceptNumber { get; set; }
|
/// <summary>
|
/// 操作时间
|
/// </summary>
|
[SugarColumn(ColumnName = "OperateTime", ColumnDescription = "操作时间")]
|
public DateTime? OperateTime { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 500)]
|
public string? Remark { get; set; }
|
|
}
|
}
|