using Forks.EnterpriseServices.DomainObjects2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3ClientService.BO
|
|
{
|
|
[BOClass]
|
|
[Serializable]
|
|
[KeyField("OrderDetail_ID", KeyGenType.assigned)]
|
|
[KeyField("Technics", KeyGenType.assigned)]
|
|
public class OrderGradeFinishRelate
|
|
{
|
|
public long OrderDetail_ID { get; set; }
|
|
|
|
public short Technics { get; set; }
|
|
|
|
public bool Finish { get; set; }
|
|
|
|
public int Already { get; set; }
|
|
|
|
}
|
|
}
|