using Forks.EnterpriseServices.DomainObjects2; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ButcherManage.BO { [Serializable] [MapToTable("GradeAndWeight_Detail")] [KeyField("SID", KeyGenType.identity)] public class GradeAndWeight_Detail { /// /// 本地ID /// public long SID { get; set; } public long? OrderDetail_ID { get; set; } public int? Order { get; set; } public int Index { get; set; } public int? OrderIndex { get; set; } public DateTime Date { get; set; } public short? Technics { get; set; } public string Technics_Name { get; set; } public long? Livestock_ID { get; set; } public string Livestock_Name { get; set; } public decimal? Weight { get; set; } [DbColumn(DbType = SqlDbType.DateTime)] public DateTime Time { get; set; } /// /// ServerID /// public long ID { get; set; } public bool Sync { get; set; } /// /// 是否删除的 /// public bool IsDeleted { get; set; } //掉猪 public bool IsDrop { get; set; } public string BarCode { get; set; } public long? ProductBatch_ID { get; set; } } }