using System.ComponentModel.DataAnnotations; using Volo.Abp.Domain.Entities; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Qtyrfe; public class Qtyrfe : Entity { /// /// 序号 /// [Key] public string mesout_qtyrfe_id { get; set; } /// /// 物料 /// public string mesout_qtyrfe_part { get; set; } /// /// 调出储位 /// public string mesout_qtyrfe_loc_from { get; set; } /// /// 调入储位 /// public string mesout_qtyrfe_loc_to { get; set; } /// /// 数量 /// public decimal mesout_qtyrfe_num { get; set; } /// /// 调拨用户 /// public string mesout_qtyrfe_user { get; set; } /// /// 写入时间 /// public string mesout_qtyrfe_wt { get; set; } /// /// 类型(1为质量补) /// public string mesout_qtyrfe_type { get; set; } public override object[] GetKeys() { return new object[] { mesout_qtyrfe_id }; } /// /// 是否读取(0,1) /// public long Yl1 { get; set; } }