using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.YdmPipeReport.Entity { /// /// 出库审核报表实体类 /// public class OutFactoryEntity { /// /// 单据号 /// private string billNo; [Description("单据号")] public string BillNo { get { return billNo; } set { billNo = value; } } /// /// 合同号 /// private string orderNo; [Description("合同号")] public string OrderNo { get { return orderNo; } set { orderNo = value; } } /// /// 收货单位 /// private string receivNm; [Description("收货单位")] public string ReceivNm { get { return receivNm; } set { receivNm = value; } } /// /// 交货地点 /// private string delivyPlaceName; [Description(" 交货地点")] public string DelivyPlaceName { get { return delivyPlaceName; } set { delivyPlaceName = value; } } /// /// 专线 /// private string spclLnNm; [Description("专线")] public string SpclLnNm { get { return spclLnNm; } set { spclLnNm = value; } } /// /// 运输类型 /// private string transTpe; [Description("运输类型")] public string TransTpe { get { return transTpe; } set { transTpe = value; } } /// /// 到站 /// private string stationNm; [Description("到站")] public string StationNm { get { return stationNm; } set { stationNm = value; } } /// /// 品名 /// private string producname; [Description("品名")] public string Producname { get { return producname; } set { producname = value; } } /// /// 钢级牌号 /// private string gradename; [Description("钢级牌号")] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 产品规格 /// private string specName; [Description("产品规格")] public string SpecName { get { return specName; } set { specName = value; } } /// /// 扣型 /// private string modelDesc; [Description("扣型")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 标准 /// private string stdName; [Description("标准")] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 长度 /// private string lenDesc; [Description("长度")] public string LenDesc { get { return lenDesc; } set { lenDesc = value; } } /// /// 出库时间 /// private string outTime; [Description("出库时间")] public string OutTime { get { return outTime; } set { outTime = value; } } /// /// 备注 /// private string memo; [Description("备注")] public string Memo { get { return memo; } set { memo = value; } } /// /// 计划吨数 /// private double? planWeight; [Description("计划吨数")] public double? PlanWeight { get { return planWeight; } set { planWeight = value; } } /// /// 实发吨数 /// private double? actWeight; [Description("实发吨数")] public double? ActWeight { get { return actWeight; } set { actWeight = value; } } private string storageName; [Description("出库地点")] public string StorageName { get { return storageName; } set { storageName = value; } } /// /// 年度/月份 /// private string year; [Description("年")] public string Year { get { return year; } set { year = value; } } private string month; [Description("月")] public string Month { get { return month; } set { month = value; } } /// /// 出库费结标 /// private string outHouse; [Description("出库费结标")] public string OutHouse { get { return outHouse; } set { outHouse = value; } } /// /// 片区 /// private string saleDesc; [Description("片区")] public string SaleDesc { get { return saleDesc; } set { saleDesc = value; } } /// /// 发车数 /// private double? carNumber; [Description("发车数")] public double? CarNumber { get { return carNumber; } set { carNumber = value; } } } }