屠宰场管理服务
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.

25 lines
546 B

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