using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class ProduceOutputData
|
|
{
|
|
public long ProduceOutput_ID { get; set; }
|
|
public long AccountingUnit_ID { get; set; }
|
|
public long Department_ID { get; set; }
|
|
public long Employee_ID { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public long BatchNumber_ID { get; set; }
|
|
public string ProductLink { get; set; }
|
|
public long RoadMap_ID { get; set; }
|
|
public long Routing_ID { get; set; }
|
|
public long ProductShift_ID { get; set; }
|
|
public long Domain_ID { get; set; }
|
|
public bool IsSend { get; set; }
|
|
public long? Goods_ID { get; set; }
|
|
public decimal? MainNumber { get; set; }
|
|
public decimal? Times { get; set; }
|
|
|
|
public decimal? OutGoodsNum { get; set; }
|
|
|
|
public long? OutGoods_ID { get; set; }
|
|
public DateTime? ProductDate { get; set; }
|
|
}
|
|
}
|