using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Entity.LogEntity
{
///
///车间出入库记录表
///
[SugarTable("LogWorkShop")]
public class LogWorkShop:BaseEntity
{
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string Type { get; set; }
///
/// Desc:托盘号
/// Default:
/// Nullable:True
///
public string PalletNo { get; set; }
///
/// Desc:箱码
/// Default:
/// Nullable:True
///
public string BoxNo { get; set; }
///
/// Desc:批次号
/// Default:
/// Nullable:True
///
public string LotNo { get; set; }
///
/// Desc:物料编码
/// Default:
/// Nullable:True
///
public string SkuNo { get; set; }
///
/// Desc:物料名称
/// Default:
/// Nullable:True
///
public string SkuName { get; set; }
///
/// Desc:数量
/// Default:
/// Nullable:True
///
public decimal Qty { get; set; }
}
}