屠宰场管理服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
961 B

using Forks.EnterpriseServices.DomainObjects2;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BWP.B3ClientService.BO
{
[Serializable]
public class OrderDetail : SyncBill
{
public long? AccountingUnit_ID { get; set; }
public DateTime? Date { get; set; }
public long? B3MainID { get; set; }
public long WeightBill_ID { get; set; }
[ReferenceTo(typeof(WeightBill), "B3ID")]
[Join("WeightBill_ID", "ID")]
public long? B3WeighBill_ID { get; set; }
public int Order { get; set; }
public int PlanNumber { get; set; }
//public int? HotFadeNumber { get; set; }
//public int? PeelingNumber { get; set; }
public string LiveColonyHouse_Name { get; set; }
public bool IsHurryButcher { get; set; }
public bool SecondarySplit { get; set; }
[DbColumn(DefaultValue = 0)]
public bool Confirmed { get; set; }
}
}