| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- using System;
- namespace Core.StlMes.Client.Qcm
- {
- public class CreateUserAndMscParms
- {
- private string psc = "";
- public string Psc
- {
- get { return psc; }
- set { psc = value; }
- }
- private string user = "";
- public string User
- {
- get { return user; }
- set { user = value; }
- }
- private string msc = "";
- public string Msc
- {
- get { return msc; }
- set { msc = value; }
- }
- private string dimater = "";
- public string Dimater
- {
- get { return dimater; }
- set { dimater = value; }
- }
- private string height = "";
- public string Height
- {
- get { return height; }
- set { height = value; }
- }
- private string model = "";
- public string Model
- {
- get { return model; }
- set { model = value; }
- }
- private string reviewNumber = "";
- public string ReviewNumber
- {
- get { return reviewNumber; }
- set { reviewNumber = value; }
- }
- private String custAlphaNoPhy = "";
- public String CustAlphaNoPhy
- {
- get { return custAlphaNoPhy; }
- set { custAlphaNoPhy = value; }
- }
- private String pic = "";
- public String Pic
- {
- get { return pic; }
- set { pic = value; }
- }
- private String indexSeqPhy = "";
- public String IndexSeqPhy
- {
- get { return indexSeqPhy; }
- set { indexSeqPhy = value; }
- }
- private String custAlphaNoChem = "";
- public String CustAlphaNoChem
- {
- get { return custAlphaNoChem; }
- set { custAlphaNoChem = value; }
- }
- private String cic = "";
- public String Cic
- {
- get { return cic; }
- set { cic = value; }
- }
- private String indexSeqChem = "";
- public String IndexSeqChem
- {
- get { return indexSeqChem; }
- set { indexSeqChem = value; }
- }
- private String custAlphaNoDetection = "";
- public String CustAlphaNoDetection
- {
- get { return custAlphaNoDetection; }
- set { custAlphaNoDetection = value; }
- }
- private String dic = "";
- public String Dic
- {
- get { return dic; }
- set { dic = value; }
- }
- private String indexSeqDetection = "";
- public String IndexSeqDetection
- {
- get { return indexSeqDetection; }
- set { indexSeqDetection = value; }
- }
- private String custAlphaNoSpec = "";
- public String CustAlphaNoSpec
- {
- get { return custAlphaNoSpec; }
- set { custAlphaNoSpec = value; }
- }
- private String sic = "";
- public String Sic
- {
- get { return sic; }
- set { sic = value; }
- }
- private String indexSeqSpec = "";
- public String IndexSeqSpec
- {
- get { return indexSeqSpec; }
- set { indexSeqSpec = value; }
- }
- private String custAlphaNoWater = "";
- public String CustAlphaNoWater
- {
- get { return custAlphaNoWater; }
- set { custAlphaNoWater = value; }
- }
- private String wic = "";
- public String Wic
- {
- get { return wic; }
- set { wic = value; }
- }
- private String indexSeqWater = "";
- public String IndexSeqWater
- {
- get { return indexSeqWater; }
- set { indexSeqWater = value; }
- }
- private String custAlphaNoProcess = "";
- public String CustAlphaNoProcess
- {
- get { return custAlphaNoProcess; }
- set { custAlphaNoProcess = value; }
- }
- private String gic = "";
- public String Gic
- {
- get { return gic; }
- set { gic = value; }
- }
- private String indexSeqProcess = "";
- public String IndexSeqProcess
- {
- get { return indexSeqProcess; }
- set { indexSeqProcess = value; }
- }
- private string createName = "";
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- private string departmentCode = "";
- public string DepartmentCode
- {
- get { return departmentCode; }
- set { departmentCode = value; }
- }
- private string departmentDesc = "";
- public string DepartmentDesc
- {
- get { return departmentDesc; }
- set { departmentDesc = value; }
- }
- private string unitCode = "";
- public string UnitCode
- {
- get { return unitCode; }
- set { unitCode = value; }
- }
- private string unitDesc = "";
- public string UnitDesc
- {
- get { return unitDesc; }
- set { unitDesc = value; }
- }
- private string unitCodeProcess = "";
- public string UnitCodeProcess
- {
- get { return unitCodeProcess; }
- set { unitCodeProcess = value; }
- }
- private string unitDescProcess = "";
- public string UnitDescProcess
- {
- get { return unitDescProcess; }
- set { unitDescProcess = value; }
- }
- private string ordLnPk = "";
- /// <summary>
- /// 合同号
- /// </summary>
- public string OrdLnPk
- {
- get { return ordLnPk; }
- set { ordLnPk = value; }
- }
- private string custAlphaNo = "";
- /// <summary>
- /// 客户alphaNo
- /// </summary>
- public string CustAlphaNo
- {
- get { return custAlphaNo; }
- set { custAlphaNo = value; }
- }
- private string useCode = "";
- /// <summary>
- /// 用途码
- /// </summary>
- public string UseCode
- {
- get { return useCode; }
- set { useCode = value; }
- }
- private string specCode = "";
- public string SpecCode
- {
- get { return specCode; }
- set { specCode = value; }
- }
- private string specName = "";
- public string SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- }
- }
|