using Forks.EnterpriseServices.DomainObjects2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BO.BO.Bill
|
|
{
|
|
[Serializable]
|
|
[MapToTable("GradeAndWeight_Detail")]
|
|
[KeyField("SID", KeyGenType.identity)]
|
|
public class GradeAndWeight_Detail
|
|
{
|
|
/// <summary>
|
|
/// 本地ID
|
|
/// </summary>
|
|
public long SID { get; set; }
|
|
|
|
public long? OrderDetail_ID { get; set; }
|
|
|
|
public int? Order { get; set; }
|
|
|
|
public int Index { 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; }
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// ServerID
|
|
/// </summary>
|
|
public long ID { get; set; }
|
|
|
|
public bool Sync { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否删除的
|
|
/// </summary>
|
|
public bool IsDeleted { get; set; }
|
|
|
|
//掉猪
|
|
public bool IsDrop { get; set; }
|
|
|
|
public string BarCode { get; set; }
|
|
}
|
|
}
|