61 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}