using Forks.EnterpriseServices.DomainObjects2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ButcherManage.BO
|
|
{
|
|
[MapToTable("Butcher_PickOutConfirmLocal")]
|
|
[KeyField("ID", KeyGenType.assigned)]
|
|
public class PickOutConfirmLocal
|
|
{
|
|
public long ID { get; set; }
|
|
public int AlreadyNumber { get; set; }
|
|
//0:未开始,1:开始,-1:结束
|
|
public int ConfirmState { get; set; }
|
|
}
|
|
}
|