| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.pss.plnsaleord.ordAmCal.model
- {
- /// <summary>
- /// 合同量转换原则结果实体类
- /// 作者:xiaohai-PC 时间:2015-11-19
- /// </summary>
- class OutOrdParamEntity
- {
- /// <summary>
- /// 是否正常
- /// </summary>
- private int errCode = 0;
- /// <summary>
- /// 是否正常
- /// </summary>
- public int ErrCode
- {
- get { return errCode; }
- set { errCode = value; }
- }
- /// <summary>
- /// 错误信息
- /// </summary>
- private string errMessage = "";
- /// <summary>
- /// 错误信息
- /// </summary>
- public string ErrMessage
- {
- get { return errMessage; }
- set { errMessage = value; }
- }
- /// <summary>
- /// 米单重(t/m)
- /// </summary>
- private double weightMi = 0;
- /// <summary>
- /// 米单重(t/m)
- /// </summary>
- public double WeightMi
- {
- get { return weightMi; }
- set { weightMi = value; }
- }
- /// <summary>
- /// 成品支数
- /// </summary>
- private int planNum = 0;
- /// <summary>
- /// 成品支数
- /// </summary>
- public int PlanNum
- {
- get { return planNum; }
- set { planNum = value; }
- }
- /// <summary>
- /// 成品目标长度(m)
- /// </summary>
- private double aimLength = 0;
- /// <summary>
- /// 成品目标长度(m)
- /// </summary>
- public double AimLength
- {
- get { return aimLength; }
- set { aimLength = value; }
- }
- /// <summary>
- /// 轧管目标转移长度(m)
- /// </summary>
- private double aimlengthZg = 0;
- /// <summary>
- /// 轧管目标转移长度(m)
- /// </summary>
- public double AimlengthZg
- {
- get { return aimlengthZg; }
- set { aimlengthZg = value; }
- }
- /// <summary>
- /// 轧制加长(m)
- /// </summary>
- private double addLenZg = 0;
- /// <summary>
- /// 轧制加长(m)
- /// </summary>
- public double AddLenZg
- {
- get { return addLenZg; }
- set { addLenZg = value; }
- }
- /// <summary>
- /// 上限轧管加长(mm)
- /// </summary>
- private double lenToendMax = 0;
- /// <summary>
- /// 上限轧管加长(mm)
- /// </summary>
- public double LenToendMax
- {
- get { return lenToendMax; }
- set { lenToendMax = value; }
- }
- /// <summary>
- /// 下限轧管加长(mm)
- /// </summary>
- private double lenToendMin = 0;
- /// <summary>
- /// 下限轧管加长(mm)
- /// </summary>
- public double LenToendMin
- {
- get { return lenToendMin; }
- set { lenToendMin = value; }
- }
- /// <summary>
- /// 缴库量
- /// </summary>
- private double weightInA = 0;
- /// <summary>
- /// 缴库量
- /// </summary>
- public double WeightInA
- {
- get { return weightInA; }
- set { weightInA = value; }
- }
- /// <summary>
- /// 缴库上限
- /// </summary>
- private double weightInAMax = 0;
- /// <summary>
- /// 缴库上限
- /// </summary>
- public double WeightInAMax
- {
- get { return weightInAMax; }
- set { weightInAMax = value; }
- }
- /// <summary>
- /// 缴库下限
- /// </summary>
- private double weightInAMin = 0;
- /// <summary>
- /// 缴库下限
- /// </summary>
- public double WeightInAMin
- {
- get { return weightInAMin; }
- set { weightInAMin = value; }
- }
- /// <summary>
- /// 排产量
- /// </summary>
- private double weightPc = 0;
- /// <summary>
- /// 排产量
- /// </summary>
- public double WeightPc
- {
- get { return weightPc; }
- set { weightPc = value; }
- }
- /// <summary>
- /// 估算量
- /// </summary>
- private double estWeight = 0;
- /// <summary>
- /// 估算量
- /// </summary>
- public double EstWeight
- {
- get { return estWeight; }
- set { estWeight = value; }
- }
- /// <summary>
- /// 转换计量单位(支、吨)
- /// </summary>
- private string weightUnit = "";
- /// <summary>
- /// 转换计量单位(支、吨)
- /// </summary>
- public string WeightUnit
- {
- get { return weightUnit; }
- set { weightUnit = value; }
- }
- /// <summary>
- /// 管体重量(t)
- /// </summary>
- private double tubebodyWeight = 0;
- /// <summary>
- /// 管体重量(t)
- /// </summary>
- public double TubebodyWeight
- {
- get { return tubebodyWeight; }
- set { tubebodyWeight = value; }
- }
- /// <summary>
- /// 接箍重量(t)
- /// </summary>
- private double weightJgAll = 0;
- /// <summary>
- /// 接箍重量(t)
- /// </summary>
- public double WeightJgAll
- {
- get { return weightJgAll; }
- set { weightJgAll = value; }
- }
- /// <summary>
- /// 镦粗影响重(t)
- /// </summary>
- private double weightDc = 0;
- /// <summary>
- /// 镦粗影响重(t)
- /// </summary>
- public double WeightDc
- {
- get { return weightDc; }
- set { weightDc = value; }
- }
- /// <summary>
- /// 拔扩加长重(t)
- /// </summary>
- private double weightDbk = 0;
- /// <summary>
- /// 拔扩加长重(t)
- /// </summary>
- public double WeightDbk
- {
- get { return weightDbk; }
- set { weightDbk = value; }
- }
- /// <summary>
- /// 轧制加长重(t)
- /// </summary>
- private double weightZg = 0;
- /// <summary>
- /// 轧制加长重(t)
- /// </summary>
- public double WeightZg
- {
- get { return weightZg; }
- set { weightZg = value; }
- }
- /// <summary>
- /// 探伤盲区切长重(t)
- /// </summary>
- private double weightInspect = 0;
- /// <summary>
- /// 探伤盲区切长重(t)
- /// </summary>
- public double WeightInspect
- {
- get { return weightInspect; }
- set { weightInspect = value; }
- }
- /// <summary>
- /// 保米长(m)
- /// </summary>
- private double totlengthM = 0;
- /// <summary>
- /// 保米长(m)
- /// </summary>
- public double TotlengthM
- {
- get { return totlengthM; }
- set { totlengthM = value; }
- }
- /// <summary>
- /// 单坯产出成品长度(m)
- /// </summary>
- private double totLenOneP = 0;
- /// <summary>
- /// 单坯产出成品长度(m)
- /// </summary>
- public double TotLenOneP
- {
- get { return totLenOneP; }
- set { totLenOneP = value; }
- }
-
- /// <summary>
- /// 单坯分切数
- /// </summary>
- private int cutNumP = 0;
- /// <summary>
- /// 单坯分切数
- /// </summary>
- public int CutNumP
- {
- get { return cutNumP; }
- set { cutNumP = value; }
- }
-
- /// <summary>
- /// 选用壁厚(mm)
- /// </summary>
- private double aimWallthick = 0;
- /// <summary>
- /// 选用壁厚(mm)
- /// </summary>
- public double AimWallthick
- {
- get { return aimWallthick; }
- set { aimWallthick = value; }
- }
- /// <summary>
- /// 轧制长度(m)
- /// </summary>
- private double rollLength = 0;
- /// <summary>
- /// 轧制长度(m)
- /// </summary>
- public double RollLength
- {
- get { return rollLength; }
- set { rollLength = value; }
- }
- /// <summary>
- /// 轧制转移长度上限(m)
- /// </summary>
- private double lenRollMax = 0;
- /// <summary>
- /// 轧制转移长度上限(m)
- /// </summary>
- public double LenRollMax
- {
- get { return lenRollMax; }
- set { lenRollMax = value; }
- }
- /// <summary>
- /// 轧制转移长度下限(m)
- /// </summary>
- private double lenRollMin = 0;
- /// <summary>
- /// 轧制转移长度下限(m)
- /// </summary>
- public double LenRollMin
- {
- get { return lenRollMin; }
- set { lenRollMin = value; }
- }
- /// <summary>
- /// 控制外径
- /// </summary>
- private double aimOutdiameter = 0;
- /// <summary>
- /// 控制外径
- /// </summary>
- public double AimOutdiameter
- {
- get { return aimOutdiameter; }
- set { aimOutdiameter = value; }
- }
- /// <summary>
- /// 排产原则
- /// </summary>
- private double feedRate = 0;
- /// <summary>
- /// 排产原则
- /// </summary>
- public double FeedRate
- {
- get { return feedRate; }
- set { feedRate = value; }
- }
- /// <summary>
- /// 排产系数
- /// </summary>
- private double coefficient = 0;
- /// <summary>
- /// 排产系数
- /// </summary>
- public double Coefficient
- {
- get { return coefficient; }
- set { coefficient = value; }
- }
- /// <summary>
- /// 排产系数min
- /// </summary>
- private double coefficientMin = 0;
- /// <summary>
- /// 排产系数min
- /// </summary>
- public double CoefficientMin
- {
- get { return coefficientMin; }
- set { coefficientMin = value; }
- }
- /// <summary>
- /// 排产重量min
- /// </summary>
- private double planPMainMin = 0;
- /// <summary>
- /// 排产重量min
- /// </summary>
- public double PlanPMainMin
- {
- get { return planPMainMin; }
- set { planPMainMin = value; }
- }
- /// <summary>
- /// 成品单支重
- /// </summary>
- private double aimWtEnd = 0;
- /// <summary>
- /// 成品单支重
- /// </summary>
- public double AimWtEnd
- {
- get { return aimWtEnd; }
- set { aimWtEnd = value; }
- }
- /// <summary>
- /// 控制壁厚米单重
- /// </summary>
- private double weightKzM = 0;
- /// <summary>
- /// 控制壁厚米单重
- /// </summary>
- public double WeightKzM
- {
- get { return weightKzM; }
- set { weightKzM = value; }
- }
-
- }
- }
|