| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- 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 InOrdParamEntity
- {
- /// <summary>
- /// 订货计量单位
- /// </summary>
- private string orderUnit = "";
- /// <summary>
- /// 订货计量单位
- /// </summary>
- public string OrderUnit
- {
- get { return orderUnit; }
- set { orderUnit = value; }
- }
- /// <summary>
- /// 交货行pk
- /// </summary>
- private string ordLnDlyPk = "";
- /// <summary>
- /// 交货行pk
- /// </summary>
- public string OrdLnDlyPk
- {
- get { return ordLnDlyPk; }
- set { ordLnDlyPk = value; }
- }
- /// <summary>
- /// 订货量
- /// </summary>
- private double orderQty = 0;
- /// <summary>
- /// 订货量
- /// </summary>
- public double OrderQty
- {
- get { return orderQty; }
- set { orderQty = value; }
- }
- /// <summary>
- /// 保总长单位
- /// </summary>
- private string totlengthUnit = "";
- /// <summary>
- /// 保总长单位
- /// </summary>
- public string TotlengthUnit
- {
- get { return totlengthUnit; }
- set { totlengthUnit = value; }
- }
- /// <summary>
- /// 保总长
- /// </summary>
- private double totlength = 0;
- /// <summary>
- /// 保总长
- /// </summary>
- public double Totlength
- {
- get { return totlength; }
- set { totlength = value; }
- }
- /// <summary>
- /// 长度上限(m)
- /// </summary>
- private double lengthMax = 0;
- public double LengthMax
- {
- get { return lengthMax; }
- set { lengthMax = value; }
- }
- /// <summary>
- /// 长度下限(m)
- /// </summary>
- private double lengthMin = 0;
- /// <summary>
- /// 长度下限(m)
- /// </summary>
- public double LengthMin
- {
- get { return lengthMin; }
- set { lengthMin = value; }
- }
- /// <summary>
- /// 外径(mm)
- /// </summary>
- private double outdiameter = 0;
- /// <summary>
- /// 外径(mm)
- /// </summary>
- public double Outdiameter
- {
- get { return outdiameter; }
- set { outdiameter = value; }
- }
- /// <summary>
- /// 壁厚(mm)
- /// </summary>
- private double wallthick = 0;
- /// <summary>
- /// 壁厚(mm)
- /// </summary>
- public double Wallthick
- {
- get { return wallthick; }
- set { wallthick = value; }
- }
- /// <summary>
- /// 交货标准壁厚公差上限(mm)
- /// </summary>
- private double stdWallthickMax = 0;
- /// <summary>
- /// 交货标准壁厚公差上限(mm)
- /// </summary>
- public double StdWallthickMax
- {
- get { return stdWallthickMax; }
- set { stdWallthickMax = value; }
- }
- /// <summary>
- /// 交货标准壁厚公差下限(mm)
- /// </summary>
- private double stdWallthickMin = 0;
- /// <summary>
- /// 交货标准壁厚公差下限(mm)
- /// </summary>
- public double StdWallthickMin
- {
- get { return stdWallthickMin; }
- set { stdWallthickMin = value; }
- }
- /// <summary>
- /// 内控壁厚公差上限(mm)
- /// </summary>
- private double nkWallthickMax = 0;
- /// <summary>
- /// 内控壁厚公差上限(mm)
- /// </summary>
- public double NkWallthickMax
- {
- get { return nkWallthickMax; }
- set { nkWallthickMax = value; }
- }
- /// <summary>
- /// 内控壁厚公差下限(mm)
- /// </summary>
- private double nkWallthickMin = 0;
- /// <summary>
- /// 内控壁厚公差下限(mm)
- /// </summary>
- public double NkWallthickMin
- {
- get { return nkWallthickMin; }
- set { nkWallthickMin = value; }
- }
- /// <summary>
- ///机组壁厚公差带能力%
- /// </summary>
- private double toleranceZone = 0.0;
- /// <summary>
- ///机组壁厚公差带能力%
- /// </summary>
- public double ToleranceZone
- {
- get { return toleranceZone; }
- set { toleranceZone = value; }
- }
- /// <summary>
- /// 机组壁厚公差带(mm)
- /// </summary>
- private double plineWallthick = 0;
- /// <summary>
- /// 机组壁厚公差带(mm)
- /// </summary>
- public double PlineWallthick
- {
- get { return plineWallthick; }
- set { plineWallthick = value; }
- }
- /// <summary>
- /// 计重方式(0 - 理重 / 1 - 实重 / -1 - 按长度交货)
- /// </summary>
- private int weightType = -1;
- /// <summary>
- /// 计重方式(0 - 理重 / 1 - 实重 / -1 - 按长度交货)
- /// </summary>
- public int WeightType
- {
- get { return weightType; }
- set { weightType = value; }
- }
- /// <summary>
- /// 交货量差上限
- /// </summary>
- private double delvryRangeMax = 0;
- /// <summary>
- /// 交货量差上限
- /// </summary>
- public double DelvryRangeMax
- {
- get { return delvryRangeMax; }
- set { delvryRangeMax = value; }
- }
- /// <summary>
- /// 交货量差下限
- /// </summary>
- private double delvryRangeMin = 0;
- /// <summary>
- /// 交货量差下限
- /// </summary>
- public double DelvryRangeMin
- {
- get { return delvryRangeMin; }
- set { delvryRangeMin = value; }
- }
- /// <summary>
- /// 交货量差方式(百分比 - 1/绝对值 - 2)
- /// </summary>
- private int delvryRangeTpe = 1;
- /// <summary>
- /// 交货量差方式(百分比 - 1/绝对值 - 2)
- /// </summary>
- public int DelvryRangeTpe
- {
- get { return delvryRangeTpe; }
- set { delvryRangeTpe = value; }
- }
- /// <summary>
- /// 接箍单重(kg)
- /// </summary>
- private double weightJg = 0;
- /// <summary>
- /// 接箍单重(kg)
- /// </summary>
- public double WeightJg
- {
- get { return weightJg; }
- set { weightJg = value; }
- }
- /// <summary>
- /// 接箍测量J值(mm)
- /// </summary>
- private double checkJVal = 0;
- /// <summary>
- /// 接箍测量J值(mm)
- /// </summary>
- public double CheckJVal
- {
- get { return checkJVal; }
- set { checkJVal = value; }
- }
- /// <summary>
- /// 扣型描述
- /// </summary>
- private string modelDesc = "";
- /// <summary>
- /// 扣型描述
- /// </summary>
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- /// <summary>
- /// 镦拔扩加长(mm)
- /// </summary>
- private double addLengthDbk = 0;
- /// <summary>
- /// 镦拔扩加长(mm)
- /// </summary>s
- public double AddLengthDbk
- {
- get { return addLengthDbk; }
- set { addLengthDbk = value; }
- }
- /// <summary>
- /// 墩粗影响长度(mm)
- /// </summary>
- private double addLengthDc = 0;
- /// <summary>
- /// 墩粗影响长度(mm)
- /// </summary>
- public double AddLengthDc
- {
- get { return addLengthDc; }
- set { addLengthDc = value; }
- }
- /// <summary>
- /// 镦拔扩烧损(%)
- /// </summary>
- private double burnoutDbk = 0;
- /// <summary>
- /// 镦拔扩烧损(%)
- /// </summary>
- public double BurnoutDbk
- {
- get { return burnoutDbk; }
- set { burnoutDbk = value; }
- }
- /// <summary>
- /// 探伤盲区切长(mm)
- /// </summary>
- private double inspectLen = 0;
- /// <summary>
- /// 探伤盲区切长(mm)
- /// </summary>
- public double InspectLen
- {
- get { return inspectLen; }
- set { inspectLen = value; }
- }
- /// <summary>
- /// 投料率
- /// </summary>
- private double putRate = 1;
- /// <summary>
- /// 投料率
- /// </summary>
- public double PutRate
- {
- get { return putRate; }
- set { putRate = value; }
- }
- /// <summary>
- /// 轧管规格外径(mm)
- /// </summary>
- private double diameterZg = 0;
- /// <summary>
- /// 轧管规格外径(mm)
- /// </summary>
- public double DiameterZg
- {
- get { return diameterZg; }
- set { diameterZg = value; }
- }
- /// <summary>
- /// 轧管规格壁厚(mm)
- /// </summary>
- private double heightZg = 0;
- /// <summary>
- /// 轧管规格壁厚(mm)
- /// </summary>
- public double HeightZg
- {
- get { return heightZg; }
- set { heightZg = value; }
- }
- /// <summary>
- /// 是否短尺随炉
- /// </summary>
- private bool shrtStove = false;
- /// <summary>
- /// 是否短尺随炉
- /// </summary>
- public bool ShrtStove
- {
- get { return shrtStove; }
- set { shrtStove = value; }
- }
- /// <summary>
- /// 单倍尺长(m)
- /// </summary>
- private double sigllen = 0;
- /// <summary>
- /// 单倍尺长(m)
- /// </summary>
- public double Sigllen
- {
- get { return sigllen; }
- set { sigllen = value; }
- }
- /// <summary>
- /// 轧管工序烧损(%)
- /// </summary>
- private double burnoutRate = 0;
- /// <summary>
- /// 轧管工序烧损(%)
- /// </summary>
- public double BurnoutRate
- {
- get { return burnoutRate; }
- set { burnoutRate = value; }
- }
- /// <summary>
- /// 坯料断面(mm)
- /// </summary>
- private List<Double> diameterPl = null;
- /// <summary>
- /// 坯料断面(mm)
- /// </summary>
- public List<Double> DiameterPl
- {
- get { return diameterPl; }
- set { diameterPl = value; }
- }
- /// <summary>
- /// 轧管工序切头加切尾和(mm)
- /// </summary>
- private double cutHeadEnd = 0;
- /// <summary>
- /// 轧管工序切头加切尾和(mm)
- /// </summary>
- public double CutHeadEnd
- {
- get { return cutHeadEnd; }
- set { cutHeadEnd = value; }
- }
- /// <summary>
- /// 环形炉最长(mm)
- /// </summary>
- private double lengthMaxRing = 0;
- /// <summary>
- /// 环形炉最长(mm)
- /// </summary>
- public double LengthMaxRing
- {
- get { return lengthMaxRing; }
- set { lengthMaxRing = value; }
- }
- /// <summary>
- /// 冷床长度(m)
- /// </summary>
- private double lengthColdbed = 0;
- /// <summary>
- /// 冷床长度(m)
- /// </summary>
- public double LengthColdbed
- {
- get { return lengthColdbed; }
- set { lengthColdbed = value; }
- }
- /// <summary>
- /// 短尺最短(m)
- /// </summary>
- private double footmin = 0;
- /// <summary>
- /// 短尺最短(m)
- /// </summary>
- public double Footmin
- {
- get { return footmin; }
- set { footmin = value; }
- }
- /// <summary>
- /// 轧管产线长度下限(m)
- /// </summary>
- private double plineLenMin = 0;
- /// <summary>
- /// 轧管产线长度下限(m)
- /// </summary>
- public double PlineLenMin
- {
- get { return plineLenMin; }
- set { plineLenMin = value; }
- }
- /// <summary>
- /// 轧管产线长度上限(m)
- /// </summary>
- private double plineLenMax = 0;
- /// <summary>
- /// 轧管产线长度上限(m)
- /// </summary>
- public double PlineLenMax
- {
- get { return plineLenMax; }
- set { plineLenMax = value; }
- }
- private string desginKey;
- public string DesginKey
- {
- get { return desginKey; }
- set { desginKey = value; }
- }
- private string indexSeq;
- public string IndexSeq
- {
- get { return indexSeq; }
- set { indexSeq = value; }
- }
- }
- }
|