| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.SaleOrder
- {
- public class CraftOrdDesignEntityChoiceCraftLv2 : CraftOrdDesignEntity
- {
- private string pscDesc = "";
- [Description("订货产品描述")]
- public string PscDesc
- {
- get { return pscDesc; }
- set { pscDesc = value; }
- }
- private string dimater = "";
- [Description("外径")]
- public string Dimater
- {
- get { return dimater; }
- set { dimater = value; }
- }
- private string height = "";
- [Description("壁厚")]
- public string Height
- {
- get { return height; }
- set { height = value; }
- }
- private string specName = "";
- [Description("产品规格")]
- public string SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- private string orderSpecDesc = "";
- [Description("订货规格")]
- public string OrderSpecDesc
- {
- get { return orderSpecDesc; }
- set { orderSpecDesc = value; }
- }
- private string modelDesc = "";
- [Description("扣型描述")]
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- private string orderSpecialDesc = "";
- [Description("产品特殊要求")]
- public string OrderSpecialDesc
- {
- get { return orderSpecialDesc; }
- set { orderSpecialDesc = value; }
- }
- private string descriptionDiff = "";
- [Description("合同附加项A")]
- public string DescriptionDiff
- {
- get { return descriptionDiff; }
- set { descriptionDiff = value; }
- }
- private string descriptionAll = "";
- [Description("合同附加项")]
- public string DescriptionAll
- {
- get { return descriptionAll; }
- set { descriptionAll = value; }
- }
- private string chgeVal = "";
- [Description("合同变更内控")]
- public string ChgeVal
- {
- get { return chgeVal; }
- set { chgeVal = value; }
- }
- private string lenDesc = "";
- [Description("长度描述")]
- public string LenDesc
- {
- get { return lenDesc; }
- set { lenDesc = value; }
- }
- private string finalUserDesc = "";
- [Description("最终用户描述")]
- public string FinalUserDesc
- {
- get { return finalUserDesc; }
- set { finalUserDesc = value; }
- }
- private string manInspection = "";
- [Description("机探盲区")]
- public string ManInspection
- {
- get { return manInspection; }
- set { manInspection = value; }
- }
- private string inspectionValue = "";
- [Description("机探盲区切长")]
- public string InspectionValue
- {
- get { return inspectionValue; }
- set { inspectionValue = value; }
- }
- private string outsBilletFl = "";
- [Description("外购坯")]
- public string OutsBilletFl
- {
- get { return outsBilletFl; }
- set { outsBilletFl = value; }
- }
- private string outsStlPipeFl = "";
- [Description("外购管")]
- public string OutsStlPipeFl
- {
- get { return outsStlPipeFl; }
- set { outsStlPipeFl = value; }
- }
- private string asselFl = "";
- [Description("ASSEL")]
- public string AsselFl
- {
- get { return asselFl; }
- set { asselFl = value; }
- }
- private string producerFl = "";
- [Description("监制")]
- public string ProducerFl
- {
- get { return producerFl; }
- set { producerFl = value; }
- }
- private string planTimeBZg = "";
- [Description("轧制开始时间")]
- public string PlanTimeBZg
- {
- get { return planTimeBZg; }
- set { planTimeBZg = value; }
- }
- private string planTimeBDbk = "";
- [Description("镦拔扩开始时间")]
- public string PlanTimeBDbk
- {
- get { return planTimeBDbk; }
- set { planTimeBDbk = value; }
- }
- private string planTimeBRcl = "";
- [Description("热处理开始时间")]
- public string PlanTimeBRcl
- {
- get { return planTimeBRcl; }
- set { planTimeBRcl = value; }
- }
- private string planTimeBJgx = "";
- [Description("加工开始时间")]
- public string PlanTimeBJgx
- {
- get { return planTimeBJgx; }
- set { planTimeBJgx = value; }
- }
- private string planTImeBProp = "";
- [Description("接箍加工开始时间")]
- public string PlanTImeBProp
- {
- get { return planTImeBProp; }
- set { planTImeBProp = value; }
- }
- private string modelCode = "";
- [Description("扣型代码")]
- public string ModelCode
- {
- get { return modelCode; }
- set { modelCode = value; }
- }
- }
- }
|