| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.Entity
- {
- class QcmZgJugdeApplyEntity
- {
- /// <summary>
- /// 申请判定单号
- /// </summary>
- //private string jugdeApplyCode = "";
- /// <summary>
- /// 炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 批号
- /// </summary>
- private string batchNo = "";
- /// <summary>
- /// 组号
- /// </summary>
- private string batchGroudNo = "";
- /// <summary>
- /// 支数
- /// </summary>
- private decimal? actCount = null;
- /// <summary>
- /// 实重
- /// </summary>
- private decimal? actWeight = null;
- /// <summary>
- /// 产出物料描叙
- /// </summary>
- private string materialName = "";
- /// <summary>
- /// 品名描述
- /// </summary>
- private string producname = "";
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- private string steelname = "";
- /// <summary>
- /// 钢种名称
- /// </summary>
- private string gradename = "";
- /// <summary>
- /// 产品规格描述
- /// </summary>
- private string specName = "";
- /// <summary>
- /// 扣型描述
- /// </summary>
- private string modelDesc = "";
- /// <summary>
- /// 标准名称
- /// </summary>
- private string stdName = "";
- /// <summary>
- /// 标准类别描述(PSL1....)
- /// </summary>
- //private string stdStyleDesc = "";
- /// <summary>
- /// 生产批号
- /// </summary>
- private string lotNo = "";
- /// <summary>
- /// 生产产线名称
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 生产合同号(合同号)
- /// </summary>
- private string proOrderNo = "";
- /// <summary>
- /// 外径(实际)
- /// </summary>
- private decimal? actDimater = null;
- /// <summary>
- /// 壁厚(实际)
- /// </summary>
- private decimal? actHeight = null;
- /// <summary>
- /// 长度(实际)
- /// </summary>
- //private decimal? actLen = null;
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- private string supplyUnitDesc = "";
- /// <summary>
- /// 申请判定单号
- /// </summary>
- //[Description("申请判定单号")]
- //[Nullable(false)]
- // [DataLength(40)]
- // public string JugdeApplyCode
- // {
- // get { return jugdeApplyCode; }
- // set { jugdeApplyCode = value; }
- // }
- /// <summary>
- /// 炉号
- /// </summary>
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(20)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 批号
- /// </summary>
- [Description("批号")]
- [Nullable(false)]
- [DataLength(20)]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /// <summary>
- /// 组号
- /// </summary>
- [Description("组号")]
- [Nullable(false)]
- [DataLength(3)]
- public string BatchGroudNo
- {
- get { return batchGroudNo; }
- set { batchGroudNo = value; }
- }
- /// <summary>
- /// 支数
- /// </summary>
- [Description("支数")]
- [Nullable(true)]
- [DataLength(5)]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- /// <summary>
- /// 实重
- /// </summary>
- [Description("重量")]
- [Nullable(true)]
- [DataLength(12)]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- /// <summary>
- /// 产出物料描叙
- /// </summary>
- [Description("产出物料")]
- [Nullable(true)]
- [DataLength(100)]
- public string MaterialName
- {
- get { return materialName; }
- set { materialName = value; }
- }
- /// <summary>
- /// 品名描述
- /// </summary>
- [Description("品名")]
- [Nullable(true)]
- [DataLength(100)]
- public string Producname
- {
- get { return producname; }
- set { producname = value; }
- }
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- [Description("钢级(牌号)")]
- [Nullable(true)]
- [DataLength(100)]
- public string Steelname
- {
- get { return steelname; }
- set { steelname = value; }
- }
- /// <summary>
- /// 钢种名称
- /// </summary>
- [Description("钢种")]
- [Nullable(true)]
- [DataLength(100)]
- public string Gradename
- {
- get { return gradename; }
- set { gradename = value; }
- }
- /// <summary>
- /// 产品规格描述
- /// </summary>
- [Description("产品规格")]
- [Nullable(true)]
- [DataLength(100)]
- public string SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- /// <summary>
- /// 扣型描述
- /// </summary>
- [Description("扣型")]
- [Nullable(true)]
- [DataLength(100)]
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- /// <summary>
- /// 标准名称
- /// </summary>
- [Description("标准名称")]
- [Nullable(true)]
- [DataLength(256)]
- public string StdName
- {
- get { return stdName; }
- set { stdName = value; }
- }
- /// <summary>
- /// 标准类别描述(PSL1....)
- /// </summary>
- //[Description("标准类别描述")]
- // [Nullable(true)]
- // [DataLength(50)]
- //public string StdStyleDesc
- //{
- // get { return stdStyleDesc; }
- // set { stdStyleDesc = value; }
- // }
- /// <summary>
- /// 生产批号
- /// </summary>
- [Description("生产批号")]
- [Nullable(true)]
- [DataLength(20)]
- public string LotNo
- {
- get { return lotNo; }
- set { lotNo = value; }
- }
- /// <summary>
- /// 生产产线名称
- /// </summary>
- [Description("生产产线")]
- [Nullable(true)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 生产合同号(合同号)
- /// </summary>
- [Description("生产合同号")]
- [Nullable(true)]
- [DataLength(25)]
- public string ProOrderNo
- {
- get { return proOrderNo; }
- set { proOrderNo = value; }
- }
- /// <summary>
- /// 外径(实际)
- /// </summary>
- [Description("外径")]
- [Nullable(true)]
- [DataLength(5)]
- public decimal? ActDimater
- {
- get { return actDimater; }
- set { actDimater = value; }
- }
- /// <summary>
- /// 壁厚(实际)
- /// </summary>
- [Description("壁厚")]
- [Nullable(true)]
- [DataLength(5)]
- public decimal? ActHeight
- {
- get { return actHeight; }
- set { actHeight = value; }
- }
- /// <summary>
- /// 长度(实际)
- /// </summary>
- //[Description("长度")]
- //[Nullable(true)]
- //[DataLength(15)]
- //public decimal? ActLen
- //{
- // get { return actLen; }
- // set { actLen = value; }
- // }
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("制造商")]
- [Nullable(true)]
- [DataLength(20)]
- public string SupplyUnitDesc
- {
- get { return supplyUnitDesc; }
- set { supplyUnitDesc = value; }
- }
- private decimal? orderPrice = null;
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("采购价格")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? OrderPrice
- {
- get { return orderPrice; }
- set { orderPrice = value; }
- }
- private decimal? balncePrice = null;
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("售出结算价")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? BalncePrice
- {
- get { return balncePrice; }
- set { balncePrice = value; }
- }
- private decimal? outPrice = null;
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("出厂价")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? OutPrice
- {
- get { return outPrice; }
- set { outPrice = value; }
- }
- private string gradename2 = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("坯料钢种")]
- [Nullable(true)]
- [DataLength(20)]
- public string Gradename2
- {
- get { return gradename2; }
- set { gradename2 = value; }
- }
- private string dimater = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("直径")]
- [Nullable(true)]
- [DataLength(20)]
- public string Dimater
- {
- get { return dimater; }
- set { dimater = value; }
- }
- private string judgeStoveNo2 = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("上料炉号")]
- [Nullable(true)]
- [DataLength(20)]
- public string JudgeStoveNo2
- {
- get { return judgeStoveNo2; }
- set { judgeStoveNo2 = value; }
- }
- private string target = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("产品标识")]
- [Nullable(true)]
- [DataLength(20)]
- public string Target
- {
- get { return target; }
- set { target = value; }
- }
- private string supplyUnit = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("供货单位")]
- [Nullable(true)]
- [DataLength(20)]
- public string SupplyUnit
- {
- get { return supplyUnit; }
- set { supplyUnit = value; }
- }
- private string fstDraweeUnit = "";
- /// <summary>
- /// 制造商(找合同头的供货单位)
- /// </summary>
- [Description("首次受票人")]
- [Nullable(true)]
- [DataLength(20)]
- public string FstDraweeUnit
- {
- get { return fstDraweeUnit; }
- set { fstDraweeUnit = value; }
- }
- [Description("订货单位")]
- public string CustomerNm { get; set; }
- }
- }
|