65 lines
1.9 KiB
C#
65 lines
1.9 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using SqlSugar;
|
|||
|
|
namespace ZR.Model.MES.wms
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 入库日志(U8上传)
|
|||
|
|
///</summary>
|
|||
|
|
[SugarTable("wm_in_log")]
|
|||
|
|
public class WmInLog
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 主键(雪花生产)
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="id" )]
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// u8库存编码
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="u8_inventory_code" )]
|
|||
|
|
public string U8InventoryCode { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 仓库编号
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="wm_info_id" )]
|
|||
|
|
public string WmInfoId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// mes内码
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="package_code" )]
|
|||
|
|
public string PackageCode { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 批次号
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="code" )]
|
|||
|
|
public string Code { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数量
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="number" )]
|
|||
|
|
public string Number { 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; }
|
|||
|
|
}
|
|||
|
|
}
|