using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; using WMS.Web.Core; namespace WMS.Web.Domain.Entitys { /// /// erp原始数据表 /// public class ErpOutStockSync:EntityBase { public ErpOutStockSync() { } /// /// 主键 订单编号 /// [Column("Id")] public override int Id { get; set; } /// /// 来源单号 /// [Column("SourceBillNo")] public string SourceBillNo { get; set; } /// /// 同步成功或者失败 null 就是未同步 /// [Column("SuccessSync")] public bool? SuccessSync { get; set; } = null; /// /// 备注 /// [Column("Remark")] public string Remark { get; set; } /// /// 明细 /// public List Details { get; set; } = new List(); } }