using Volo.Abp.Domain.Entities;
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
public class scmout : Entity
{
///
/// TYPE写入时间
///
public string scmout_dt_w { get; set; }
///
/// 单据类型
///
public string scmout_type { get; set; }
///
/// TYRP单号
///
public string scmout_nbr { get; set; }
///
/// 料号
///
public string scmout_part { get; set; }
///
/// 追加码/预定交货日/序号/储位
///
public string scmout_no { get; set; }
///
/// TYRP异动储位
///
public string scmout_loc { get; set; }
///
/// 库存交易年月
///
public string scmout_ym { get; set; }
///
/// 库存交易日
///
public string scmout_date { get; set; }
///
/// 数量
///
public decimal scmout_qty { get; set; }
///
/// 调入储位
///
public string scmout_in_loc { get; set; }
///
/// 有效码
///
public string scmout_stat { get; set; }
public override object[] GetKeys()
{
return new object[] { scmout_type + scmout_nbr + scmout_part + scmout_no };
}
}