using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; using WMS.Web.Core; namespace WMS.Web.Domain.Entitys { /// /// 对应金蝶的明细 /// [Serializable] [Table("t_wms_outstock_erp_details")] public class OutStockErpDetails : EntityBase { public OutStockErpDetails() { } /// /// 主键 订单编号 /// [Column("Id")] public override int Id { get; set; } /// /// 任务单明细Id /// [Column("DetailId")] public int DetailId { get; set; } /// /// 对应金蝶单据明细id(销售出库同步金蝶下推使用) /// [Column("Erp_DetailId")] public int Erp_DetailId { get; set; } /// /// 来源单号 /// [Column("SourceBillNo")] public string SourceBillNo { get; set; } /// /// 销售订单号 /// [Column("SaleBillNo")] public string SaleBillNo { get; set; } /// /// 出库数量 /// [Column("Qty")] public decimal Qty { get; set; } /// /// 同步成功或者失败 默认是失败状态 /// [Column("SuccessSync")] public bool SuccessSync { get; set; } = false; } }