仓库模块_出库货物记录:init
This commit is contained in:
86
ZR.Model/MES/wms/WmOutOrderPlan.cs
Normal file
86
ZR.Model/MES/wms/WmOutOrderPlan.cs
Normal file
@@ -0,0 +1,86 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库计划
|
||||
///</summary>
|
||||
[SugarTable("wm_out_order_plan")]
|
||||
public class WmOutOrderPlan
|
||||
{
|
||||
/// <summary>
|
||||
/// id
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 出库单号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "fk_out_order_id")]
|
||||
public string FkOutOrderId { get; set; }
|
||||
/// <summary>
|
||||
/// 批次号(工单号+箱号)
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "patchcode")]
|
||||
public string Patchcode { get; set; }
|
||||
/// <summary>
|
||||
/// 物料号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "material_code")]
|
||||
public string MaterialCode { get; set; }
|
||||
/// <summary>
|
||||
/// 所属仓库
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "warehouse_code")]
|
||||
public string WarehouseCode { get; set; }
|
||||
/// <summary>
|
||||
/// 批次箱数
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "package_num")]
|
||||
public int? PackageNum { get; set; }
|
||||
/// <summary>
|
||||
/// 批次零件数
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "partnumber_num")]
|
||||
public int? PartnumberNum { get; set; }
|
||||
/// <summary>
|
||||
/// 需求零件数
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "require_num")]
|
||||
public int? RequireNum { get; set; }
|
||||
/// <summary>
|
||||
/// 批次时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "patchtime")]
|
||||
public string Patchtime { get; set; }
|
||||
/// <summary>
|
||||
/// 出库顺序
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "outorder")]
|
||||
public int? Outorder { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "CREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "CREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "UPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user