using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class DispatchBillDetail:Base
|
|
{
|
|
public override string TableName
|
|
{
|
|
get { return TableNames.已审核派工明细; }
|
|
}
|
|
|
|
public long? ProductShift_ID { get; set; }
|
|
|
|
public long Detail_ID { get; set; }
|
|
|
|
public long? BatchNumber_ID { get; set; }
|
|
|
|
public int RowVersion{get;set;}
|
|
}
|
|
}
|