| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmPipeReport.Entity
- {
- public class OrderStockEntity
- {
- private string orderNo;
- [Description("合同号")]
- public string OrderNo
- {
- get { return orderNo; }
- set { orderNo = value; }
- }
-
- private string judgeStoveNo;
- [Description("炉号")]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
-
- private string batchNo;
- [Description("批号")]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private string batchGroudNo;
- [Description("组号")]
- public string BatchGroudNo
- {
- get { return batchGroudNo; }
- set { batchGroudNo = 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 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 specName;
- [Description("产品规格")]
- public string SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- private string createTime;
- [Description("入库时间")]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- private double? actCount;
- [Description("支")]
- public double? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- private double? actWeight;
- [Description("吨")]
- public double? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- private double? billCount;
- [Description("支")]
- public double? BillCount
- {
- get { return billCount; }
- set { billCount = value; }
- }
- private double? billWeight;
- [Description("吨")]
- public double? BillWeight
- {
- get { return billWeight; }
- set { billWeight = value; }
- }
- private double? tallCount;
- [Description("支")]
- public double? TallCount
- {
- get { return tallCount; }
- set { tallCount = value; }
- }
- private double? tallWeight;
- [Description("吨")]
- public double? TallWeight
- {
- get { return tallWeight; }
- set { tallWeight = value; }
- }
- private double? loadCount;
- [Description("支")]
- public double? LoadCount
- {
- get { return loadCount; }
- set { loadCount = value; }
- }
- private double? loadWeight;
- [Description("吨")]
- public double? LoadWeight
- {
- get { return loadWeight; }
- set { loadWeight = value; }
- }
- private double? onBillCount;
- [Description("支")]
- public double? OnBillCount
- {
- get { return onBillCount; }
- set { onBillCount = value; }
- }
- private double? onBillWeight;
- [Description("吨")]
- public double? OnBillWeight
- {
- get { return onBillWeight; }
- set { onBillWeight = value; }
- }
- private double? onTallCount;
- [Description("支")]
- public double? OnTallCount
- {
- get { return onTallCount; }
- set { onTallCount = value; }
- }
- private double? onTallWeight;
- [Description("吨")]
- public double? OnTallWeight
- {
- get { return onTallWeight; }
- set { onTallWeight = value; }
- }
- }
- }
|