/***文档注释*********************************************** * 作者 : * 创建日期 :2021-01-03 * 描述 :轨道衡计量预报表 * 注意事项 : * 遗留BUG : * 修改日期 : * 修改人员 : * 修改内容 : ***********************************************************/ using System; using System.Text; namespace Common { public class PreRailwayScale { /// /// 预报编号 /// //[AttributeID("predictionNo")] public string predictionNo { get; set; } /// /// 通知单号 /// public string noticeNo { get; set; } /// /// 车号 /// public string railwayNo { get; set; } /// /// 车厢序号 /// public string railwayCarriageNo { get; set; } /// /// 物料编号 /// public string matterNo { get; set; } /// /// 物料名称 /// public string matterName { get; set; } /// /// 合同号 /// public string contractNo { get; set; } /// /// 批次号 /// public string batchNo { get; set; } /// /// 供应商编号 /// public string customerSupplierNo { get; set; } /// /// 供应商名称 /// public string customerSupplierName { get; set; } /// /// 原产地 /// public string sourceArea { get; set; } /// /// 发货单位编号 /// public string forwardingUnitNo { get; set; } /// /// 发货单位名称 /// public string forwardingUnitName { get; set; } /// /// 收货单位编号 /// public string receivingUintNo { get; set; } /// /// 收货单位名称 /// public string receivingUintName { get; set; } /// /// 材质编号 /// public string materialNo { get; set; } /// /// 材质名称 /// public string materialName { get; set; } /// /// 规格编号 /// public string specNo { get; set; } /// /// 规格名称 /// public string specName { get; set; } /// /// 发运毛重 /// public double? shipmentGrossWeight { get; set; } /// /// 发运净重 /// public double? shipmentNetWeight { get; set; } /// /// 发运数量 /// public long? shipmentNum { get; set; } /// /// 卸货地点编号 /// public string loadPointNo { get; set; } /// /// 卸货地点名称 /// public string loadPointName { get; set; } /// /// 取样编号 /// public string sampleNo { get; set; } /// /// 取样凭证 /// public string sampleVoucher { get; set; } /// /// 承运单位编号 /// public string carrierUnitNo { get; set; } /// /// 承运单位名称 /// public string carrierUnitName { get; set; } /// /// 预报类型 /// public string predictionType { get; set; } /// /// 预报组合 /// public string predictionCombination { get; set; } /// /// 计量类型编号 /// public string meterTypeNo { get; set; } /// /// 计量类型名称 /// public string meterTypeName { get; set; } /// /// 有效开始时间 /// public DateTime? effectiveStartTime { get; set; } /// /// 有效结束时间 /// public DateTime? effectiveEndTime { get; set; } /// /// 轨道衡类型编号 /// public string railwayTypeNo { get; set; } /// /// 轨道衡类型名称 /// public string railwayTypeName { get; set; } /// /// 备注 /// public string memo { get; set; } /// /// 状态 /// public string valueFlag { get; set; } /// /// 使用时间 /// public DateTime? usedTime { get; set; } /// /// 创建人编号 /// public string createManNo { get; set; } /// /// 创建人姓名 /// public string createManName { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 修改人编号 /// public string updateManNo { get; set; } /// /// 修改人姓名 /// public string updateManName { get; set; } /// /// 修改时间 /// public DateTime? updateTime { get; set; } /// /// 删除人编号 /// public string deleteManNo { get; set; } /// /// 删除人姓名 /// public string deleteManName { get; set; } /// /// 删除时间 /// public DateTime? deleteTime { get; set; } /// /// 前状态 /// public string pValueFlag { get; set; } /// /// 是否危化品 /// public string isChemical { get; set; } /// /// 限载重量 /// public double? limitWeight { get; set; } /// /// 车型编号 /// public string railwayModelNo { get; set; } /// /// 车型名称 /// public string railwayModelName { get; set; } /// /// 页码 /// public int pageNum { get; set; } /// /// 页面条数 /// public int pageSize { get; set; } /// /// 开始时间 /// public string startTime { get; set; } /// /// 结束时间 /// public string endTime { get; set; } /// /// 毛重 /// public double? grossWeight { get; set; } /// /// 毛重时间 /// public DateTime? grossTime { get; set; } /// /// 皮重 /// public double? tareWeight { get; set; } /// /// 皮重时间 /// public DateTime? tareTime { get; set; } /// /// 净重 /// public double? netWeight { get; set; } /// /// 净重时间 /// public DateTime? netTime { get; set; } /// /// 到站 /// public string arrival { get; set; } /// /// 发站 /// public string station { get; set; } #region 老系统字段 /// /// 主凭据号 /// public string voucherIdentity { get; set; } /// /// 主凭据行 /// public string voucherItem { get; set; } /// /// 主业务类型组 /// public string businessGroup { get; set; } /// /// 临时牌号 /// public string tempConveyance { get; set; } /// /// 车型 /// public string conveyanceType { get; set; } /// /// 委托源系统 /// public string resourceSystem { get; set; } /// /// 分组计件件量 /// public double? groupPackageAmount { get; set; } /// /// 分组计量单位 /// public string groupPackageUnit { get; set; } /// /// 标准件数 /// public double? packageAmount { get; set; } /// /// 计件单位 /// public string packageUnit { get; set; } /// /// 理论量 /// public double? theoryAmount { get; set; } /// /// 计量组批号 /// public string measureBatch { get; set; } /// /// 计量组批车数 /// public double? measureBatchCount { get; set; } /// /// 发货点类型 /// public string senderType { get; set; } /// /// 发货点备注 /// public string senderRemark { get; set; } /// /// 收货点类型 /// public string receiverType { get; set; } /// /// 收货点备注 /// public string receiverRemark { get; set; } /// /// 委托部门名称 /// public string trustDepartmentName { get; set; } /// /// 签发部门编码 /// public string trustDepartment { get; set; } /// /// 签发人 /// public string trustor { get; set; } /// /// 签发时间 /// public DateTime trustDateTime { get; set; } /// /// 有效期截至时间 /// public DateTime trustAvailabilityTime { get; set; } /// /// 签发机器ip /// public string trustIp { get; set; } /// /// 使用秤体类型 /// public string stationType { get; set; } /// /// 使用站点编号 /// public string measureStation { get; set; } /// /// 使用站点 /// public string measureStationName { get; set; } /// /// 计量单位 /// public string amountUnit { get; set; } /// /// 委托有效天数 /// public double? trustDay { get; set; } /// /// 运输工具组 /// public string conveyanceGroup { get; set; } #endregion } }