username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
/**  
* EC_OrderExtendExtend.cs
*
* 功 能: 订单扩展信息表实体扩展类
* 类 名: EC_OrderExtend
*
* Ver    变更日期             负责人  变更内容
* ───────────────────────────────────
* V0.01  2013-4-23 10:13:00   吴崎均  迁移Visiter到此类
*
*
*
*
*
*
*/
using System;
using CY.Infrastructure.Domain;
using CY.Infrastructure.Common;
namespace CY.Model
{
    /// <summary>
    /// 订单扩展表扩展类
    /// </summary> 
    public partial class EC_OrderExtend
    {
        /// <summary>
        /// 初始化
        /// </summary>
        /// <param name="isInitBrief">是否简略实例化</param>
        public EC_OrderExtend(bool isInitBrief)
        {
 
            this.FileId = -1;
            this.ProofreadWayId = -1;
            this.ProofreadState = -1;
            this.ProofreadFileId = -1;
            this.PrintNum = -1;
            this.ExigencyCaseId = -1;
            this.BusinessManagerId = -1;
            this.CustomerManagerId = -1;
            this.CustomerLevelId = -1;
            this.Contacts = "";
            this.ContactPhone = "";
            this.InvoiceId = -1;
            this.SurplusPrintNum = -1;
            this.Operate = "";
            this.Remark = "";
            this.BookNum = "";
            this.BookPrice = "";
            this.NumPerBag = "";
            this.BagNum = "";
            this.Productionprogress = "";
            this.DelayTime = null;
        }
 
        #region ExtendProperties
 
 
        private Sys_Dictionary _proofreadway;
 
        /// <summary>
        /// 校稿方式
        /// </summary>
        public Sys_Dictionary ProofreadWay
        {
            get { _proofreadway = null == _proofreadway ? new Sys_Dictionary() : _proofreadway; return _proofreadway; }
            set { value = _proofreadway; }
        }
 
        private Sys_Dictionary _proofreadstateobj = null;
        /// <summary>
        /// 校稿状态
        /// </summary>
        public Sys_Dictionary ProofreadStateObj
        {
            get
            {
                _proofreadstateobj = null == _proofreadstateobj ? new Sys_Dictionary() : _proofreadstateobj;
                return _proofreadstateobj;
            }
            set { _proofreadstateobj = value; }
        }
 
        private Sys_Dictionary _exigencycase;
        /// <summary>
        /// 紧急程度
        /// </summary>
        public Sys_Dictionary ExigencyCase
        {
            get { _exigencycase = null == _exigencycase ? new Sys_Dictionary() : _exigencycase; return _exigencycase; }
            set { value = _exigencycase; }
        }
        private Sys_Dictionary _customerlevel;
        /// <summary>
        /// 客户级别
        /// </summary>
        public Sys_Dictionary CustomerLevel
        {
            get { _customerlevel = null == _customerlevel ? new Sys_Dictionary() : _customerlevel; return _customerlevel; }
            set { value = _customerlevel; }
        }
        private OA_Staff _businessmanager;
 
        /// <summary>
        /// 业务经理
        /// </summary>
        public OA_Staff BusinessManager
        {
            get { _businessmanager = null == _businessmanager ? new OA_Staff() : _businessmanager; return _businessmanager; }
            set { value = _businessmanager; }
        }
 
        private OA_Staff _customermanager;
 
        /// <summary>
        /// 客户经理
        /// </summary>
        public OA_Staff CustomerManager
        {
            get { _customermanager = null == _customermanager ? new OA_Staff() : _customermanager; return _customermanager; }
            set { value = _customermanager; }
        }
        /// <summary>
        /// 开票申请
        /// </summary>
        public int? Kaipiaoshenqing
        {
            get;
            set;
        }
 
        /// <summary>
        /// 开票申请人
        /// </summary>
        public Guid? KaipiaoshenqingId
        {
            get;
            set;
        }
 
        /// <summary>
        /// 开票申请
        /// </summary>
        public string KaipiaoshenqingName
        {
            get;
            set;
        }
        /// <summary>
        /// 开票申请人
        /// </summary>
        public Guid? KaipiaoshenqingCreater
        {
            get;
            set;
        }
        /// <summary>
        /// 开票申请时间
        /// </summary>
        public DateTime? KaipiaoshenqingTime
        {
            get;
            set;
        }
        /// <summary>
        /// 去除订单
        /// </summary>
        public int? Quchudingdan
        {
            get;
            set;
        }
        /// <summary>
        /// 去除订单人
        /// </summary>
        public Guid? QuchudingdanCreater
        {
            get;
            set;
        }
        /// <summary>
        /// 去除订单时间
        /// </summary>
        public DateTime? QuchudingdanTime
        {
            get;
            set;
        }
        /// <summary>
        /// 客户签收
        /// </summary>
        public int? Kehuqianshou
        {
            get;
            set;
        }
        /// <summary>
        /// 客户签收
        /// </summary>
        public string KehuqianshouName
        {
            get;
            set;
        }
        /// <summary>
        /// 客户签收人
        /// </summary>
        public Guid? KehuqianshouCreater
        {
            get;
            set;
        }
        /// <summary>
        /// 客户签收时间
        /// </summary>
        public DateTime? KehuqianshouTime
        {
            get;
            set;
        }
        /// <summary>
        /// 开票确认人
        /// </summary>
        public Guid? KaipiaoquerenCreater
        {
            get;
            set;
        }
        /// <summary>
        /// 开票确认时间
        /// </summary>
        public DateTime? KaipiaoquerenTime
        {
            get;
            set;
        }
        /// <summary>
        /// 送货单号
        /// </summary>
        public Guid? DeliveryOrderId
        {
            get;
            set;
        }
        /// <summary>
        /// 是否安排送货 `1是2否
        /// </summary>
        public int? shifouDelivery
        {
            get;
            set;
        }
        /// <summary>
        /// 设计状态,是否下单 `1是2否
        /// </summary>
        public int? ShejiStatus
        {
            get;
            set;
        }
 
        /// <summary>
        /// 设计人员
        /// </summary>
        public int? Shejirenyuan
        {
            get;
            set;
        }
        /// <summary>
        /// 设计人员
        /// </summary>
        public string ShejirenyuanName { get; set; }
 
        /// <summary>
        /// 设计类型
        /// </summary>
        public int? Shejileixing
        {
            get;
            set;
        }
        /// <summary>
        /// 设计类型
        /// </summary>
        public string ShejileixingName { get; set; }
 
        /// <summary>
        /// 单双面
        /// </summary>
        public string Danshuangmian { get; set; }
 
        /// <summary>
        /// 设计要求
        /// </summary>
        public string Shejiyaoqiu { get; set; }
 
 
 
        /// <summary>
        /// 设计人员
        /// </summary>
        public int? Shejirenyuanneiye
        {
            get;
            set;
        }
        /// <summary>
        /// 设计人员
        /// </summary>
        public string ShejirenyuanNameneiye { get; set; }
 
        /// <summary>
        /// 设计类型
        /// </summary>
        public int? Shejileixingneiye
        {
            get;
            set;
        }
        /// <summary>
        /// 设计类型
        /// </summary>
        public string ShejileixingNameneiye { get; set; }
 
        /// <summary>
        /// 单双面
        /// </summary>
        public string Danshuangmianneiye { get; set; }
 
        /// <summary>
        /// 设计要求
        /// </summary>
        public string Shejiyaoqiuneiye { get; set; }
 
 
        /// <summary>
        /// 设计单价
        /// </summary>
        public decimal? ShejiUnitPrice { get; set; }
 
        /// <summary>
        /// 设计金额
        /// </summary>
        public decimal? ShejiSumPrice { get; set; }
 
 
        /// <summary>
        /// 设计单价内页
        /// </summary>
        public decimal? ShejiUnitPriceneiye { get; set; }
 
        /// <summary>
        /// 设计金额内页
        /// </summary>
        public decimal? ShejiSumPriceneiye { get; set; }
 
        /// <summary>
        /// 设计数量
        /// </summary>
        public int? Shejicount { get; set; }
 
 
        /// <summary>
        /// 设计数量内页
        /// </summary>
        public int? Shejicountneiye { get; set; }
 
 
 
 
        public string Duiyinghetongbianhao { get; set; }
        #endregion
 
        #region Visiter
 
        /// <summary>
        /// 属性访问器
        /// </summary>
        /// <param name="name">属性名</param>
        /// <param name="index">索引</param>
        /// <param name="isChange">是否将指定属性设置为传入值</param>
        /// <param name="value">需要赋予的值</param>
        /// <returns>与名称对应的属性值</returns>
        public object Visiter(string name, int? index = -1, bool isChange = false, object value = null)
        {
            object theValue = null;
 
            #region Basic
 
            if ("Keyid".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 1)
            {
                this.Keyid = isChange ? MyConvert.ConvertToInt32(value) : Keyid;
                theValue = this.Keyid;
            }
            else if ("FileId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 2)
            {
                this.FileId = isChange ? MyConvert.ConvertToInt32(value) : FileId;
                theValue = this.FileId;
            }
            else if ("ProofreadWayId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 3)
            {
                this.ProofreadWayId = isChange ? MyConvert.ConvertToInt32(value) : ProofreadWayId;
                theValue = this.ProofreadWayId;
            }
            else if ("ProofreadState".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 4)
            {
                this.ProofreadState = isChange ? MyConvert.ConvertToInt32(value) : ProofreadState;
                theValue = this.ProofreadState;
            }
            else if ("ProofreadFileId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 5)
            {
                this.ProofreadFileId = isChange ? MyConvert.ConvertToInt32(value) : ProofreadFileId;
                theValue = this.ProofreadFileId;
            }
            else if ("PrintNum".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 6)
            {
                this.PrintNum = isChange ? MyConvert.ConvertToInt32(value) : PrintNum;
                theValue = this.PrintNum;
            }
            else if ("ExigencyCaseId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 7)
            {
                this.ExigencyCaseId = isChange ? MyConvert.ConvertToInt32(value) : ExigencyCaseId;
                theValue = this.ExigencyCaseId;
            }
            else if ("BusinessManagerId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 8)
            {
                this.BusinessManagerId = isChange ? MyConvert.ConvertToInt32(value) : BusinessManagerId;
                theValue = this.BusinessManagerId;
            }
            else if ("CustomerManagerId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 9)
            {
                this.CustomerManagerId = isChange ? MyConvert.ConvertToInt32(value) : CustomerManagerId;
                theValue = this.CustomerManagerId;
            }
            else if ("CustomerLevelId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 10)
            {
                this.CustomerLevelId = isChange ? MyConvert.ConvertToInt32(value) : CustomerLevelId;
                theValue = this.CustomerLevelId;
            }
            else if ("Contacts".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 11)
            {
                this.Contacts = isChange ? MyConvert.ConvertToString(value) : Contacts;
                theValue = this.Contacts;
            }
            else if ("ContactPhone".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 12)
            {
                this.ContactPhone = isChange ? MyConvert.ConvertToString(value) : ContactPhone;
                theValue = this.ContactPhone;
            }
            else if ("InvoiceId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 13)
            {
                this.InvoiceId = isChange ? MyConvert.ConvertToInt32(value) : InvoiceId;
                theValue = this.InvoiceId;
            }
            else if ("SurplusPrintNum".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 14)
            {
                this.SurplusPrintNum = isChange ? MyConvert.ConvertToInt32(value) : SurplusPrintNum;
                theValue = this.SurplusPrintNum;
            }
            else if ("LastUpdateTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 15)
            {
                this.LastUpdateTime = isChange ? MyConvert.ConvertToDateTime(value) : LastUpdateTime;
                theValue = this.LastUpdateTime;
            }
            else if ("Operate".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 16)
            {
                this.Operate = isChange ? MyConvert.ConvertToString(value) : Operate;
                theValue = this.Operate;
            }
            else if ("Remark".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 17)
            {
                this.Remark = isChange ? MyConvert.ConvertToString(value) : Remark;
                theValue = this.Remark;
            }
            else if ("BookNum".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 18)
            {
                this.BookNum = isChange ? MyConvert.ConvertToString(value) : BookNum;
                theValue = this.BookNum;
            }
            else if ("BookPrice".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 19)
            {
                this.BookPrice = isChange ? MyConvert.ConvertToString(value) : BookPrice;
                theValue = this.BookPrice;
            }
            else if ("NumPerBag".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 20)
            {
                this.NumPerBag = isChange ? MyConvert.ConvertToString(value) : NumPerBag;
                theValue = this.NumPerBag;
            }
            else if ("BagNum".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 21)
            {
                this.BagNum = isChange ? MyConvert.ConvertToString(value) : BagNum;
                theValue = this.BagNum;
            }
 
            #endregion
 
            #region Extend
 
            else if ("ProofreadWayName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 30)
            {
                this.ProofreadWay.Name = isChange ? MyConvert.ConvertToString(value) : this.ProofreadWay.Name;
                theValue = this.ProofreadWay.Name;
            }
            else if ("ProofreadStateName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 31)
            {
                this.ProofreadStateObj.Name = isChange ? MyConvert.ConvertToString(value) : this.ProofreadStateObj.Name;
                theValue = this.ProofreadStateObj.Name;
            }
            else if ("ExigencyCaseName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 32)
            {
                this.ExigencyCase.Name = isChange ? MyConvert.ConvertToString(value) : this.ExigencyCase.Name;
                theValue = this.ExigencyCase.Name;
            }
            else if ("CustomerLevelName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 33)
            {
                this.CustomerLevel.Name = isChange ? MyConvert.ConvertToString(value) : this.CustomerLevel.Name;
                theValue = this.CustomerLevel.Name;
            }
            else if ("BusinessManagerName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 34)
            {
                this.BusinessManager.Name = isChange ? MyConvert.ConvertToString(value) : this.BusinessManager.Name;
                theValue = this.BusinessManager.Name;
            }
            else if ("CustomerManagerName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 35)
            {
                this.CustomerManager.Name = isChange ? MyConvert.ConvertToString(value) : this.CustomerManager.Name;
                theValue = this.CustomerManager.Name;
            }
            else if ("DelayTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 36)
            {
                this.DelayTime = isChange ? MyConvert.ConvertToDateTime(value) : this.DelayTime;
                theValue = this.DelayTime;
            }
            else if ("Productionprogress".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 37)
            {
                this.Productionprogress = isChange ? MyConvert.ConvertToString(value) : this.Productionprogress;
                theValue = this.Productionprogress;
            }
            else if ("PrintPackDeliveryRequir".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 38)
            {
                this.PrintPackDeliveryRequir = isChange ? MyConvert.ConvertToString(value) : this.PrintPackDeliveryRequir;
                theValue = this.PrintPackDeliveryRequir;
            }
            else if ("Kaipiaoshenqing".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 39)
            {
                this.Kaipiaoshenqing = isChange ? MyConvert.ConvertToInt32(value) : this.Kaipiaoshenqing;
                theValue = this.Kaipiaoshenqing;
            }
            else if ("KaipiaoshenqingTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 40)
            {
                this.KaipiaoshenqingTime = isChange ? MyConvert.ConvertToDateTime(value) : this.KaipiaoshenqingTime;
                theValue = this.KaipiaoshenqingTime;
            }
            else if ("KaipiaoshenqingCreater".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 41)
            {
                this.KaipiaoshenqingCreater = isChange ? MyConvert.ConvertToGuid(value) : this.KaipiaoshenqingCreater;
                theValue = this.KaipiaoshenqingCreater;
            }
            else if ("Quchudingdan".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 42)
            {
                this.Quchudingdan = isChange ? MyConvert.ConvertToInt32(value) : this.Quchudingdan;
                theValue = this.Quchudingdan;
            }
            else if ("QuchudingdanTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 43)
            {
                this.QuchudingdanTime = isChange ? MyConvert.ConvertToDateTime(value) : this.QuchudingdanTime;
                theValue = this.QuchudingdanTime;
            }
            else if ("QuchudingdanCreater".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 44)
            {
                this.QuchudingdanCreater = isChange ? MyConvert.ConvertToGuid(value) : this.QuchudingdanCreater;
                theValue = this.QuchudingdanCreater;
            }
            else if ("KaipiaoshenqingName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 45)
            {
                this.KaipiaoshenqingName = isChange ? MyConvert.ConvertToString(value) : this.KaipiaoshenqingName;
                theValue = this.KaipiaoshenqingName;
            }
 
            else if ("Kehuqianshou".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 46)
            {
                this.Kehuqianshou = isChange ? MyConvert.ConvertToInt32(value) : this.Kehuqianshou;
                theValue = this.Kehuqianshou;
            }
            else if ("KehuqianshouTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 47)
            {
                this.KehuqianshouTime = isChange ? MyConvert.ConvertToDateTime(value) : this.KehuqianshouTime;
                theValue = this.KehuqianshouTime;
            }
            else if ("KehuqianshouCreater".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 48)
            {
                this.KehuqianshouCreater = isChange ? MyConvert.ConvertToGuid(value) : this.KehuqianshouCreater;
                theValue = this.KehuqianshouCreater;
            }
            else if ("KehuqianshouName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 49)
            {
                this.KehuqianshouName = isChange ? MyConvert.ConvertToString(value) : this.KehuqianshouName;
                theValue = this.KehuqianshouName;
            }
            else if ("KaipiaoquerenTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 50)
            {
                this.KaipiaoquerenTime = isChange ? MyConvert.ConvertToDateTime(value) : this.KaipiaoquerenTime;
                theValue = this.KaipiaoquerenTime;
            }
            else if ("KaipiaoquerenCreater".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 51)
            {
                this.KaipiaoquerenCreater = isChange ? MyConvert.ConvertToGuid(value) : this.KaipiaoquerenCreater;
                theValue = this.KaipiaoquerenCreater;
            }
            else if ("DeliveryOrderId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 52)
            {
                this.DeliveryOrderId = isChange ? MyConvert.ConvertToGuid(value) : this.DeliveryOrderId;
                theValue = this.DeliveryOrderId;
            }
            else if ("shifouDelivery".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 53)
            {
                this.shifouDelivery = isChange ? MyConvert.ConvertToInt32(value) : this.shifouDelivery;
                theValue = this.shifouDelivery;
            }
            else if ("Duiyinghetongbianhao".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 54)
            {
                this.Duiyinghetongbianhao = isChange ? MyConvert.ConvertToString(value) : this.Duiyinghetongbianhao;
                theValue = this.Duiyinghetongbianhao;
            }
 
 
            else if ("ShejiStatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 55)
            {
                this.ShejiStatus = isChange ? MyConvert.ConvertToInt32(value) : this.ShejiStatus;
                theValue = this.ShejiStatus;
            }
            else if ("Shejirenyuan".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 56)
            {
                this.Shejirenyuan = isChange ? MyConvert.ConvertToInt32(value) : this.Shejirenyuan;
                theValue = this.Shejirenyuan;
            }
            else if ("ShejirenyuanName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 57)
            {
                this.ShejirenyuanName = isChange ? MyConvert.ConvertToString(value) : this.ShejirenyuanName;
                theValue = this.ShejirenyuanName;
            }
            else if ("Shejileixing".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 58)
            {
                this.Shejileixing = isChange ? MyConvert.ConvertToInt32(value) : this.Shejileixing;
                theValue = this.Shejileixing;
            }
            else if ("ShejileixingName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 59)
            {
                this.ShejileixingName = isChange ? MyConvert.ConvertToString(value) : this.ShejileixingName;
                theValue = this.ShejileixingName;
            }
            else if ("Danshuangmian".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 60)
            {
                this.Danshuangmian = isChange ? MyConvert.ConvertToString(value) : this.Danshuangmian;
                theValue = this.Danshuangmian;
            }
            else if ("Shejiyaoqiu".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 61)
            {
                this.Shejiyaoqiu = isChange ? MyConvert.ConvertToString(value) : this.Shejiyaoqiu;
                theValue = this.Shejiyaoqiu;
            }
            else if ("Shejirenyuanneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 62)
            {
                this.Shejirenyuanneiye = isChange ? MyConvert.ConvertToInt32(value) : this.Shejirenyuanneiye;
                theValue = this.Shejirenyuanneiye;
            }
            else if ("ShejirenyuanNameneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 63)
            {
                this.ShejirenyuanNameneiye = isChange ? MyConvert.ConvertToString(value) : this.ShejirenyuanNameneiye;
                theValue = this.ShejirenyuanNameneiye;
            }
            else if ("Shejileixingneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 64)
            {
                this.Shejileixingneiye = isChange ? MyConvert.ConvertToInt32(value) : this.Shejileixingneiye;
                theValue = this.Shejileixingneiye;
            }
            else if ("ShejileixingNameneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 65)
            {
                this.ShejileixingNameneiye = isChange ? MyConvert.ConvertToString(value) : this.ShejileixingNameneiye;
                theValue = this.ShejileixingNameneiye;
            }
            else if ("Danshuangmianneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 66)
            {
                this.Danshuangmianneiye = isChange ? MyConvert.ConvertToString(value) : this.Danshuangmianneiye;
                theValue = this.Danshuangmianneiye;
            }
            else if ("Shejiyaoqiuneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 67)
            {
                this.Shejiyaoqiuneiye = isChange ? MyConvert.ConvertToString(value) : this.Shejiyaoqiuneiye;
                theValue = this.Shejiyaoqiuneiye;
            }
            else if ("ShejiUnitPrice".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 68)
            {
                this.ShejiUnitPrice = isChange ? MyConvert.ConvertToDecimal(value) : this.ShejiUnitPrice;
                theValue = this.ShejiUnitPrice;
            }
            else if ("ShejiSumPrice".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 69)
            {
                this.ShejiSumPrice = isChange ? MyConvert.ConvertToDecimal(value) : this.ShejiSumPrice;
                theValue = this.ShejiSumPrice;
            }
            else if ("ShejiUnitPriceneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 70)
            {
                this.ShejiUnitPriceneiye = isChange ? MyConvert.ConvertToDecimal(value) : this.ShejiUnitPriceneiye;
                theValue = this.ShejiUnitPriceneiye;
            }
            else if ("ShejiSumPriceneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 71)
            {
                this.ShejiSumPriceneiye = isChange ? MyConvert.ConvertToDecimal(value) : this.ShejiSumPriceneiye;
                theValue = this.ShejiSumPriceneiye;
            }
            else if ("Shejicount".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 72)
            {
                this.Shejicount = isChange ? MyConvert.ConvertToInt32(value) : this.Shejicount;
                theValue = this.Shejicount;
            }
            else if ("Shejicountneiye".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 73)
            {
                this.Shejicountneiye = isChange ? MyConvert.ConvertToInt32(value) : this.Shejicountneiye;
                theValue = this.Shejicountneiye;
            }
            else if ("printunit".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 74)
            {
                this.printunit = isChange ? MyConvert.ConvertToInt32(value).Value : this.printunit;
                theValue = this.printunit;
            }
            
 
            #endregion
 
 
            return theValue;
        }
 
        #endregion
    }
}