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; }
|
|
}
|
|
}
|