namespace ZR.Model.MES.wms
{
///
/// 入库日志(U8上传)
///
[SugarTable("wm_in_log")]
public class WmInLog
{
///
/// 主键(雪花生产)
///
[SugarColumn(ColumnName = "id")]
public string Id { get; set; }
///
/// u8库存编码
///
[SugarColumn(ColumnName = "u8_inventory_code")]
public string U8InventoryCode { get; set; }
///
/// 仓库编号
///
[SugarColumn(ColumnName = "wm_info_id")]
public string WmInfoId { get; set; }
///
/// mes内码
///
[SugarColumn(ColumnName = "package_code")]
public string PackageCode { get; set; }
///
/// 批次号
///
[SugarColumn(ColumnName = "code")]
public string Code { get; set; }
///
/// 数量
///
[SugarColumn(ColumnName = "number")]
public string Number { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}