仓库模块_出库货物记录:init
This commit is contained in:
114
ZR.Model/MES/wms/WmGoodsOutRecord.cs
Normal file
114
ZR.Model/MES/wms/WmGoodsOutRecord.cs
Normal file
@@ -0,0 +1,114 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SqlSugar;
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库货物记录表
|
||||
/// </summary>
|
||||
[SugarTable("wm_goods_out_record")]
|
||||
public class WmGoodsOutRecord
|
||||
{
|
||||
/// <summary>
|
||||
/// 雪花id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 成品库当前货物表主键
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_now_production_id")]
|
||||
public string FkNowProductionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出库单号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_out_order_id")]
|
||||
public string FkOutOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子编号(MES)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "package_code")]
|
||||
public string PackageCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子编号(客户)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "package_code_client")]
|
||||
public string PackageCodeClient { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子编号(原始码)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "package_code_original")]
|
||||
public string PackageCodeOriginal { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库位编号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "location_code")]
|
||||
public string LocationCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件号
|
||||
/// </summary>
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子中货物数量(理论)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "goods_num_logic")]
|
||||
public int? GoodsNumLogic { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子中货物数量(实际)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "goods_num_action")]
|
||||
public int? GoodsNumAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "entry_warehouse_time")]
|
||||
public DateTime? EntryWarehouseTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出库时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "out_time")]
|
||||
public DateTime? OutTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user