using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class ProduceIntake_Detail : Base
|
|
{
|
|
public override string TableName
|
|
{
|
|
get { return TableNames.投料单明细; }
|
|
}
|
|
|
|
public long ProduceIntake_ID { get; set; }
|
|
public long? Goods_ID { get; set; }
|
|
public decimal? Number { get; set; }
|
|
public decimal? Times { get; set; }
|
|
public DateTime? ProductDate { get; set; }
|
|
}
|
|
}
|