schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
using DataEntity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// ÒºÌå²ÎÊýʵÌåÀà
    /// </summary>
    [SugarTable("liquid")]
    public class Liquid:IEntity
    {
        private string _liquid_type_id = "";
        /// <summary>
        /// ÒºÌåÀàÐÍid Ö÷¼ü
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌåÀàÐÍid")]
        public string liquid_type_id
        {
            get { return _liquid_type_id; }
            set
            {
                if (liquid_type_id == value) return; // ±ÜÃâÖØ¸´ÉèÖÃÏàͬµÄÖµ
                _liquid_type_id = value;
                OnPropertyChanged(nameof(liquid_type_id));
            }
        }
 
        private string _liquid_type_name = "";
        /// <summary>
        /// ÒºÌåÀàÐÍÃû³Æ
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌåÀàÐÍÃû³Æ")]
        public string liquid_type_name
        {
            get { return _liquid_type_name; }
            set
            {
                if (liquid_type_name == value) return;
                _liquid_type_name = value;
                OnPropertyChanged(nameof(liquid_type_name));
            }
        }
        private string _liquid_type_name_en = "";
        /// <summary>
        /// ÒºÌåÀàÐÍÃû³ÆÓ¢ÎÄ
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌåÀàÐÍÃû³ÆÓ¢ÎÄ")]
        public string liquid_type_name_en
        {
            get { return _liquid_type_name_en; }
            set
            {
                if (liquid_type_name_en == value) return;
                _liquid_type_name_en = value;
                OnPropertyChanged(nameof(liquid_type_name_en));
            }
        }
        private string _liquid_range_id = "";
        /// <summary>
        /// ÒºÌ巶Χid Ö÷¼ü
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌ巶Χid")]
        public string liquid_range_id
        {
            get { return _liquid_range_id; }
            set
            {
                if (liquid_range_id == value) return;
                _liquid_range_id = value;
                OnPropertyChanged(nameof(liquid_range_id));
            }
        }
        private string _liquid_range_name = "";
        /// <summary>
        /// ÒºÌ巶ΧÃû³Æ
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌ巶ΧÃû³Æ")]
        public string liquid_range_name
        {
            get { return _liquid_range_name; }
            set
            {
                if (liquid_range_name == value) return;
                _liquid_range_name = value;
                OnPropertyChanged(nameof(liquid_range_name));
            }
        }
        private string _liquid_range_name_en = "";
        /// <summary>
        /// ÒºÌ巶ΧÃû³ÆÓ¢ÎÄ
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("ÒºÌ巶ΧÃû³ÆÓ¢ÎÄ")]
        public string liquid_range_name_en
        {
            get { return _liquid_range_name_en; }
            set
            {
                if (liquid_range_name_en == value) return;
                _liquid_range_name_en = value;
                OnPropertyChanged(nameof(liquid_range_name_en));
            }
        }
        private string _device_arm_id = "";
        /// <summary>
        /// ±Ûid Ö÷¼ü
        /// </summary>
        [SugarColumn(IsIgnore = true, IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
        [Description("±Ûid")]
        public string device_arm_id
        {
            get { return _device_arm_id; }
            set
            {
                if (device_arm_id == value) return;
                _device_arm_id = value;
                OnPropertyChanged(nameof(device_arm_id));
            }
        }
        private string _liquid_id = "";
        /// <summary>
        /// ÒºÌåid Ö÷¼ü
        /// </summary>
        [SugarColumn(ColumnName = "liquid_id", IsPrimaryKey = true)]
        [Description("ÒºÌåid")]
        public string liquid_id
        {
            get { return _liquid_id; }
            set
            {
                if (liquid_id == value) return;
                _liquid_id = value;
                OnPropertyChanged(nameof(liquid_id));
            }
        }
        private string _liquid_name = "";
        /// <summary>
        /// ÒºÌåÃû³Æ
        /// </summary>
        [SugarColumn(ColumnName = "liquid_name")]
        [Description("ÒºÌåÃû³Æ")]
        public string liquid_name
        {
            get { return _liquid_name; }
            set
            {
                if (liquid_name == value) return;
                _liquid_name = value;
                OnPropertyChanged(nameof(liquid_name));
            }
        }
        private string _liquid_category = "";
        /// <summary>
        /// ÒºÌåÀàÐÍ
        /// </summary>
        [SugarColumn(ColumnName = "liquid_category")]
        [Description("ÒºÌåÀàÐÍ")]
        public string liquid_category
        {
            get { return _liquid_category; }
            set
            {
                if (liquid_category == value) return;
                _liquid_category = value;
                OnPropertyChanged(nameof(liquid_category));
            }
        }
        private string _content = "";
        /// <summary>
        /// ÒºÌåÃèÊöÐÅÏ¢
        /// </summary>
        [SugarColumn(ColumnName = "content")]
        [Description("ÒºÌåÃèÊöÐÅÏ¢")]
        public string content
        {
            get { return _content; }
            set
            {
                if (content == value) return;
                _content = value;
                OnPropertyChanged(nameof(content));
            }
        }
        private string _liquid_volume_type = "";
        /// <summary>
        /// ÒºÌåÌå»ýÀàÐÍId£¨Íâ¼ü£©
        /// </summary>
        [SugarColumn(ColumnName = "liquid_volume_type")]
        [Description("ÒºÌåÌå»ýÀàÐÍId")]
        public string liquid_volume_type
        {
            get { return _liquid_volume_type; }
            set
            {
                if (liquid_volume_type == value) return;
                _liquid_volume_type = value;
                OnPropertyChanged(nameof(liquid_volume_type));
            }
        }
        private double _aspirate_speed = 100;
        /// <summary>
        /// ÎüȡҺÌåµÄËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_speed")]
        [Description("ÎüȡҺÌåµÄËÙ¶È")]
        public double aspirate_speed
        {
            get { return _aspirate_speed; }
            set
            {
                if (aspirate_speed == value) return;
                _aspirate_speed = value;
                OnPropertyChanged(nameof(aspirate_speed));
            }
        }
        private double _aspirate_acceleration = 100;
        /// <summary>
        /// ÎüȡҺÌåµÄ¼ÓËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_acceleration")]
        [Description("ÎüȡҺÌåµÄ¼ÓËÙ¶È")]
        public double aspirate_acceleration
        {
            get { return _aspirate_acceleration; }
            set
            {
                if (aspirate_acceleration == value) return;
                _aspirate_acceleration = value;
                OnPropertyChanged(nameof(aspirate_acceleration));
            }
        }
        private double _aspirate_deceleration = 100;
        /// <summary>
        /// ÎüȡҺÌåµÄ¼õËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_deceleration")]
        [Description("ÎüȡҺÌåµÄ¼õËÙ¶È")]
        public double aspirate_deceleration
        {
            get { return _aspirate_deceleration; }
            set
            {
                if (aspirate_deceleration == value) return;
                _aspirate_deceleration = value;
                OnPropertyChanged(nameof(aspirate_deceleration));
            }
        }
        private int _aspirate_delay = 0;
        /// <summary>
        /// ÎüȡҺÌåµÄÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_delay")]
        [Description("ÎüȡҺÌåµÄÑÓ³Ùʱ¼ä")]
        public int aspirate_delay
        {
            get { return _aspirate_delay; }
            set
            {
                if (aspirate_delay == value) return;
                _aspirate_delay = value;
                OnPropertyChanged(nameof(aspirate_delay));
            }
        }
        private double _before_aspirate_volume = 0;
        /// <summary>
        /// Ç°Îü¿ÕÆøµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "before_aspirate_volume")]
        [Description("ǰÎü¿ÕÆøµÄÌå»ý")]
        public double before_aspirate_volume
        {
            get { return _before_aspirate_volume; }
            set
            {
                if (before_aspirate_volume == value) return;
                _before_aspirate_volume = value;
                OnPropertyChanged(nameof(before_aspirate_volume));
            }
        }
        private int _before_aspirate_delay = 0;
        /// <summary>
        /// Ç°Îü¿ÕÆøÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "before_aspirate_delay")]
        [Description("ǰÎü¿ÕÆøÑÓ³Ùʱ¼ä")]
        public int before_aspirate_delay
        {
            get { return _before_aspirate_delay; }
            set
            {
                if (before_aspirate_delay == value) return;
                _before_aspirate_delay = value;
                OnPropertyChanged(nameof(before_aspirate_delay));
            }
        }
        private double _after_aspirate_volume = 0;
        /// <summary>
        /// ºóÎü¿ÕÆøµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "after_aspirate_volume")]
        [Description("ºóÎü¿ÕÆøµÄÌå»ý")]
        public double after_aspirate_volume
        {
            get { return _after_aspirate_volume; }
            set
            {
                if (after_aspirate_volume == value) return;
                _after_aspirate_volume = value;
                OnPropertyChanged(nameof(after_aspirate_volume));
            }
        }
        private int _after_aspirate_delay = 0;
        /// <summary>
        /// ºóÎü¿ÕÆøÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "after_aspirate_delay")]
        [Description("ºóÎü¿ÕÆøÑÓ³Ùʱ¼ä")]
        public int after_aspirate_delay
        {
            get { return _after_aspirate_delay; }
            set
            {
                if (after_aspirate_delay == value) return;
                _after_aspirate_delay = value;
                OnPropertyChanged(nameof(after_aspirate_delay));
            }
        }
        private double _aspirate_enter_speed = 0;
        /// <summary>
        /// ÎüҺʱ½øÈë¿×ÄÚµÄʱËÙ
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_enter_speed")]
        [Description("ÎüҺʱ½øÈë¿×ÄÚµÄʱËÙ")]
        public double aspirate_enter_speed
        {
            get { return _aspirate_enter_speed; }
            set
            {
                if (aspirate_enter_speed == value) return;
                _aspirate_enter_speed = value;
                OnPropertyChanged(nameof(aspirate_enter_speed));
            }
        }
        private double _aspirate_out_speed = 0;
        /// <summary>
        /// ÎüҺʱ³ö¿×µÄʱËÙ
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_out_speed")]
        [Description("ÎüҺʱ³ö¿×µÄʱËÙ")]
        public double aspirate_out_speed
        {
            get { return _aspirate_out_speed; }
            set
            {
                if (aspirate_out_speed == value) return;
                _aspirate_out_speed = value;
                OnPropertyChanged(nameof(aspirate_out_speed));
            }
        }
 
        private double _before_a_liquid_volume = 0;
        /// <summary>
        /// ÎüҺǰ¶àÎüÒºÌåµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "before_a_liquid_volume")]
        [Description("ÎüҺǰ¶àÎüÒºÌåµÄÌå»ý")]
        public double before_a_liquid_volume
        {
            get { return _before_a_liquid_volume; }
            set
            {
                if (before_a_liquid_volume == value) return;
                _before_a_liquid_volume = value;
                OnPropertyChanged(nameof(before_a_liquid_volume));
            }
        }
        private double _after_a_liquid_volume = 0;
        /// <summary>
        /// ÎüÒººó¶àÎüÒºÌåµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "after_a_liquid_volume")]
        [Description("ÎüÒººó¶àÎüÒºÌåµÄÌå»ý")]
        public double after_a_liquid_volume
        {
            get { return _after_a_liquid_volume; }
            set
            {
                if (after_a_liquid_volume == value) return;
                _after_a_liquid_volume = value;
                OnPropertyChanged(nameof(after_a_liquid_volume));
            }
        }
        private string _aspirate_well_bottom_length = "0";
        /// <summary>
        /// Àë¿×µ×µÄ¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_well_bottom_length")]
        [Description("Àë¿×µ×µÄ¾àÀë")]
        public string aspirate_well_bottom_length
        {
            get { return _aspirate_well_bottom_length; }
            set
            {
                if (aspirate_well_bottom_length == value) return;
                _aspirate_well_bottom_length = value;
                OnPropertyChanged(nameof(aspirate_well_bottom_length));
            }
        }
        private int _aspirate_position_type = 0;
        /// <summary>
        /// ÎüҺλÖÃÀàÐÍ£º0£ºLiquid;1:¿×¿ÚÒÔÏ£»2£º¿×µ×²¿
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_position_type")]
        [Description("ÎüҺλÖÃÀàÐÍ")]
        public int aspirate_position_type
        {
            get { return _aspirate_position_type; }
            set
            {
                if (aspirate_position_type == value) return;
                _aspirate_position_type = value;
                OnPropertyChanged(nameof(aspirate_position_type));
            }
        }
        private string _aspirate_well_x = "0";
        /// <summary>
        /// ÎüҺƫÀë¿×ÖÐÐÄx¾àÀë,¶à×éÓÃ","·Ö¸î
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_well_x")]
        [Description("ÎüҺƫÀë¿×ÖÐÐÄx¾àÀë")]
        public string aspirate_well_x
        {
            get { return _aspirate_well_x; }
            set
            {
                if (aspirate_well_x == value) return;
                _aspirate_well_x = value;
                OnPropertyChanged(nameof(aspirate_well_x));
            }
        }
        private string _aspirate_well_y = "0";
        /// <summary>
        /// ÎüҺƫÀë¿×ÖÐÐÄy¾àÀ룬¶à×éÓÃ","·Ö¸î
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_well_y")]
        [Description("ÎüҺƫÀë¿×ÖÐÐÄy¾àÀë")]
        public string aspirate_well_y
        {
            get { return _aspirate_well_y; }
            set
            {
                if (aspirate_well_y == value) return;
                _aspirate_well_y = value;
                OnPropertyChanged(nameof(aspirate_well_y));
            }
        }
        private int _is_probe = 0;
        /// <summary>
        /// ¸ÃÒºÌåÊÇ·ñ¿ÉÒÔ±»ÒºÃæÌ½²âµ½£¬1£º¿ÉÒÔ£»0£º²»¿ÉÒÔ
        /// </summary>
        [SugarColumn(ColumnName = "is_probe")]
        [Description("¸ÃÒºÌåÊÇ·ñ¿ÉÒÔ±»ÒºÃæÌ½²âµ½")]
        public int is_probe
        {
            get { return _is_probe; }
            set
            {
                if (is_probe == value) return;
                _is_probe = value;
                OnPropertyChanged(nameof(is_probe));
            }
        }
        private string _sensibility = "0";
        /// <summary>
        /// ÎüÒºÒºÃæÌ½²âÁéÃô¶È
        /// </summary>
        [SugarColumn(ColumnName = "sensibility")]
        [Description("ÎüÒºÒºÃæÌ½²âÁéÃô¶È")]
        public string sensibility
        {
            get { return _sensibility; }
            set
            {
                if (sensibility == value) return;
                _sensibility = value;
                OnPropertyChanged(nameof(sensibility));
            }
        }
        private string _blocking_sensibility = "0";
        /// <summary>
        /// ÎüÒºÒºÃæ¶ÂÈû̽²âÁéÃô¶È
        /// </summary>
        [SugarColumn(ColumnName = "blocking_sensibility")]
        [Description("ÎüÒºÒºÃæ¶ÂÈû̽²âÁéÃô¶È")]
        public string blocking_sensibility
        {
            get { return _blocking_sensibility; }
            set
            {
                if (blocking_sensibility == value) return;
                _blocking_sensibility = value;
                OnPropertyChanged(nameof(blocking_sensibility));
            }
        }
        private double _well_top_length = 0;
        /// <summary>
        /// ¿ªÆôѹÁ¦¸ÐӦǰ¾àÀë¿×¿ÚϵĴ¹Ö±¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "well_top_length")]
        [Description("¿ªÆôѹÁ¦¸ÐӦǰ¾àÀë¿×¿ÚϵĴ¹Ö±¾àÀë")]
        public double well_top_length
        {
            get { return _well_top_length; }
            set
            {
                if (well_top_length == value) return;
                _well_top_length = value;
                OnPropertyChanged(nameof(well_top_length));
            }
        }
        private double _liquid_down_length = 0;
        /// <summary>
        /// Ç¹Í·ÔÚÒºÃæÏµĿªÊ¼ÎüÒºµÄÉî¶È
        /// </summary>
        [SugarColumn(ColumnName = "liquid_down_length")]
        [Description("ǹͷÔÚÒºÃæÏµĿªÊ¼ÎüÒºµÄÉî¶È")]
        public double liquid_down_length
        {
            get { return _liquid_down_length; }
            set
            {
                if (liquid_down_length == value) return;
                _liquid_down_length = value;
                OnPropertyChanged(nameof(liquid_down_length));
            }
        }
        private string _probeinfo = "";
        /// <summary>
        /// Ì½²âÌáʾÄÚÈÝ
        /// </summary>
        [SugarColumn(ColumnName = "probeinfo")]
        [Description("̽²âÌáʾÄÚÈÝ")]
        public string probeinfo
        {
            get { return _probeinfo; }
            set
            {
                if (probeinfo == value) return;
                _probeinfo = value;
                OnPropertyChanged(nameof(probeinfo));
            }
        }
        private int _aspirate_is_knock_wall = 0;
        /// <summary>
        /// ÎüÒººó£¬ÊÇ·ñÅö±Ú,
        /// </summary>
        [SugarColumn(ColumnName = "aspirate_is_knock_wall")]
        [Description("ÎüÒººó£¬ÊÇ·ñÅö±Ú")]
        public int aspirate_is_knock_wall
        {
            get { return _aspirate_is_knock_wall; }
            set
            {
                if (aspirate_is_knock_wall == value) return; 
                _aspirate_is_knock_wall = value;
                OnPropertyChanged(nameof(aspirate_is_knock_wall));
            }
        }
        private int _knock_direction = 0;
        /// <summary>
        /// Åö±ÚµÄ·½Ïò
        /// </summary>
        [SugarColumn(ColumnName = "knock_direction")]
        [Description("Åö±ÚµÄ·½Ïò")]
        public int knock_direction
        {
            get { return _knock_direction; }
            set
            {
                if (knock_direction == value) return;
                _knock_direction = value;
                OnPropertyChanged(nameof(knock_direction));
            }
        }
        private double _knock_speed = 0;
        /// <summary>
        /// Åö±ÚµÄËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "knock_speed")]
        [Description("Åö±ÚµÄËÙ¶È")]
        public double knock_speed
        {
            get { return _knock_speed; }
            set
            {
                if (knock_speed == value) return;
                _knock_speed = value;
                OnPropertyChanged(nameof(knock_speed));
            }
        }
        private int _knock_wall_delay = 0;
        /// <summary>
        /// Åö±ÚÖ®ºóµÄÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "knock_wall_delay")]
        [Description("Åö±ÚÖ®ºóµÄÑÓ³Ùʱ¼ä")]
        public int knock_wall_delay
        {
            get { return _knock_wall_delay; }
            set
            {
                if (knock_wall_delay == value) return;
                _knock_wall_delay = value;
                OnPropertyChanged(nameof(knock_wall_delay));
            }
        }
        private double _knock_well_height = 0;
        /// <summary>
        /// Åö±Ú¿ªÊ¼Ê±¿ÌÓë¿×¿ÚÖ®¼äµÄ¸ß¶È²î
        /// </summary>
        [SugarColumn(ColumnName = "knock_well_height")]
        [Description("Åö±Ú¿ªÊ¼Ê±¿ÌÓë¿×¿ÚÖ®¼äµÄ¸ß¶È²î")]
        public double knock_well_height
        {
            get { return _knock_well_height; }
            set
            {
                if (knock_well_height == value) return;
                _knock_well_height = value;
                OnPropertyChanged(nameof(knock_well_height));
            }
        }
 
        private double _knock_wall_length = 0;
        /// <summary>
        /// Åö±Ú¿ªÊ¼Ê±¿ÌÓë·½Ïò±ÛµÄ¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "knock_wall_length")]
        [Description("Åö±Ú¿ªÊ¼Ê±¿ÌÓë·½Ïò±ÛµÄ¾àÀë")]
        public double knock_wall_length
        {
            get { return _knock_wall_length; }
            set
            {
                if (knock_wall_length == value) return;
                _knock_wall_length = value;
                OnPropertyChanged(nameof(knock_wall_length));
            }
        }
 
        private double _knock_wall_x = 0d;
        /// <summary>
        /// ÎüÒºÅö±ÚʱxÆ«ÒÆÁ¿%
        /// </summary>
        [SugarColumn(ColumnName = "knock_wall_x")]
        [Description("ÎüÒºÅö±ÚʱxÆ«ÒÆÁ¿%")]
        public double knock_wall_x
        {
            get { return _knock_wall_x; }
            set
            {
                if (knock_wall_x == value) return; 
                _knock_wall_x = value;
                OnPropertyChanged(nameof(knock_wall_x));
            }
        }
 
        private double _knock_wall_y = 0d;
        /// <summary>
        /// ÎüÒºÅö±ÚʱyÆ«ÒÆÁ¿%
        /// </summary>
        [SugarColumn(ColumnName = "knock_wall_y")]
        [Description("ÎüÒºÅö±ÚʱyÆ«ÒÆÁ¿%")]
        public double knock_wall_y
        {
            get { return _knock_wall_y; }
            set
            {
                if (knock_wall_y == value) return;
                _knock_wall_y = value;
                OnPropertyChanged(nameof(knock_wall_y));
            }
        }
 
        private int _knock_wall_position_type = 0;
        /// <summary>
        /// Åö±ÚλÖÃÀàÐÍ£º0£ºLiquid;1:¿×¿ÚÒÔÏ£»2£º¿×µ×²¿
        /// </summary>
        [SugarColumn(ColumnName = "knock_wall_position_type")]
        [Description("Åö±ÚλÖÃÀàÐÍ")]
        public int knock_wall_position_type
        {
            get { return _knock_wall_position_type; }
            set
            {
                if (knock_wall_position_type == value) return;
                _knock_wall_position_type = value;
                OnPropertyChanged(nameof(knock_wall_position_type));
            }
        }
        private double _dispense_speed = 100;
        /// <summary>
        /// ÅÅÒºµÄËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "dispense_speed")]
        [Description("ÅÅÒºµÄËÙ¶È")]
        public double dispense_speed
        {
            get { return _dispense_speed; }
            set
            {
                if (dispense_speed == value) return;
                _dispense_speed = value;
                OnPropertyChanged(nameof(dispense_speed));
            }
        }
        private double _dispense_acceleration = 100;
        /// <summary>
        /// ÅųöÒºÌåµÄ¼ÓËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "dispense_acceleration")]
        [Description("ÅųöÒºÌåµÄ¼ÓËÙ¶È")]
        public double dispense_acceleration
        {
            get { return _dispense_acceleration; }
            set
            {
                if (dispense_acceleration == value) return;
                _dispense_acceleration = value;
                OnPropertyChanged(nameof(dispense_acceleration));
            }
        }
        private double _dispense_deceleration = 100;
        /// <summary>
        /// ÅųöÒºÌåµÄ¼õËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "dispense_deceleration")]
        [Description("ÅųöÒºÌåµÄ¼õËÙ¶È")]
        public double dispense_deceleration
        {
            get { return _dispense_deceleration; }
            set
            {
                if (dispense_deceleration == value) return;
                _dispense_deceleration = value;
                OnPropertyChanged(nameof(dispense_deceleration));
            }
        }
        private int _dispense_delay = 0;
        /// <summary>
        /// ÅųöÒºÌåµÄÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "dispense_delay")]
        [Description("ÅųöÒºÌåµÄÑÓ³Ùʱ¼ä")]
        public int dispense_delay
        {
            get { return _dispense_delay; }
            set
            {
                if (dispense_delay == value) return;
                _dispense_delay = value;
                OnPropertyChanged(nameof(dispense_delay));
            }
        }
        private double _before_dispense_volume = 0;
        /// <summary>
        /// Ç°Îü¿ÕÆøµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "before_dispense_volume")]
        [Description("ǰÎü¿ÕÆøµÄÌå»ý")]
        public double before_dispense_volume
        {
            get { return _before_dispense_volume; }
            set
            {
                if (before_dispense_volume == value) return;
                _before_dispense_volume = value;
                OnPropertyChanged(nameof(before_dispense_volume));
            }
        }
        private int _before_dispense_delay = 0;
        /// <summary>
        /// Ç°Îü¿ÕÆøÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "before_dispense_delay")]
        [Description("ǰÎü¿ÕÆøÑÓ³Ùʱ¼ä")]
        public int before_dispense_delay
        {
            get { return _before_dispense_delay; }
            set
            {
                if (before_dispense_delay == value) return;
                _before_dispense_delay = value;
                OnPropertyChanged(nameof(before_dispense_delay));
            }
        }
        private double _after_dispense_volume = 0;
        /// <summary>
        /// ºóÎü¿ÕÆøµÄÌå»ý
        /// </summary>
        [SugarColumn(ColumnName = "after_dispense_volume")]
        [Description("ºóÎü¿ÕÆøµÄÌå»ý")]
        public double after_dispense_volume
        {
            get { return _after_dispense_volume; }
            set
            {
                if (after_dispense_volume == value) return;
                _after_dispense_volume = value;
                OnPropertyChanged(nameof(after_dispense_volume));
            }
        }
        private int _after_dispense_delay = 0;
        /// <summary>
        /// ºóÎü¿ÕÆøÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "after_dispense_delay")]
        [Description("ºóÎü¿ÕÆøÑÓ³Ùʱ¼ä")]
        public int after_dispense_delay
        {
            get { return _after_dispense_delay; }
            set
            {
                if (after_dispense_delay == value) return;
                _after_dispense_delay = value;
                OnPropertyChanged(nameof(after_dispense_delay));
            }
        }
        private double _dispense_enter_speed = 100;
        /// <summary>
        /// ÅÅҺʱ½øÈë¿×ÄÚµÄʱËÙ
        /// </summary>
        [SugarColumn(ColumnName = "dispense_enter_speed")]
        [Description("ÅÅҺʱ½øÈë¿×ÄÚµÄʱËÙ")]
        public double dispense_enter_speed
        {
            get { return _dispense_enter_speed; }
            set
            {
                if (dispense_enter_speed == value) return;
                _dispense_enter_speed = value;
                OnPropertyChanged(nameof(dispense_enter_speed));
            }
        }
        private double _dispense_out_speed = 100;
        /// <summary>
        /// ÅÅҺʱ³ö¿×µÄʱËÙ
        /// </summary>
        [SugarColumn(ColumnName = "dispense_out_speed")]
        [Description("ÅÅҺʱ³ö¿×µÄʱËÙ")]
        public double dispense_out_speed
        {
            get { return _dispense_out_speed; }
            set
            {
                if (dispense_out_speed == value) return;
                _dispense_out_speed = value;
                OnPropertyChanged(nameof(dispense_out_speed));
            }
        }
        private double _dispense_well_bottom_length = 0;
        /// <summary>
        /// ÅÅÒºÀë¿×µ×µÄ¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "dispense_well_bottom_length")]
        [Description("ÅÅÒºÀë¿×µ×µÄ¾àÀë")]
        public double dispense_well_bottom_length
        {
            get { return _dispense_well_bottom_length; }
            set
            {
                if (dispense_well_bottom_length == value) return;
                _dispense_well_bottom_length = value;
                OnPropertyChanged(nameof(dispense_well_bottom_length));
            }
        }
        private int _dispense_position_type = 0;
        /// <summary>
        /// ÅÅҺλÖÃÀàÐÍ£º0£ºLiquid;1:¿×¿ÚÒÔÏ£»2£º¿×µ×²¿
        /// </summary>
        [SugarColumn(ColumnName = "dispense_position_type")]
        [Description("ÅÅҺλÖÃÀàÐÍ")]
        public int dispense_position_type
        {
            get { return _dispense_position_type; }
            set
            {
                if (dispense_position_type == value) return;
                _dispense_position_type = value;
                OnPropertyChanged(nameof(dispense_position_type));
            }
        }
        private double _dispense_well_x = 0;
        /// <summary>
        /// ÅÅҺƫÀë¿×ÖÐÐÄx¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "dispense_well_x")]
        [Description("ÅÅҺƫÀë¿×ÖÐÐÄx¾àÀë")]
        public double dispense_well_x
        {
            get { return _dispense_well_x; }
            set
            {
                if (dispense_well_x == value) return;
                _dispense_well_x = value;
                OnPropertyChanged(nameof(dispense_well_x));
            }
        }
        private double _dispense_well_y = 0;
        /// <summary>
        /// ÅÅҺƫÀë¿×ÖÐÐÄy¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "dispense_well_y")]
        [Description("ÅÅҺƫÀë¿×ÖÐÐÄy¾àÀë")]
        public double dispense_well_y
        {
            get { return _dispense_well_y; }
            set
            {
                if (dispense_well_y == value) return;
                _dispense_well_y = value;
                OnPropertyChanged(nameof(dispense_well_y));
            }
        }
        private string _dispense_sensibility = "";
        /// <summary>
        /// ÅÅÒºÒºÃæÌ½²âÁéÃô¶È£º0£º¸ß£»1£ºÖУ»2£ºµÍ
        /// </summary>
        [SugarColumn(ColumnName = "dispense_sensibility")]
        [Description("ÅÅÒºÒºÃæÌ½²âÁéÃô¶È")]
        public string dispense_sensibility
        {
            get { return _dispense_sensibility; }
            set
            {
                if (dispense_sensibility == value) return;
                _dispense_sensibility = value;
                OnPropertyChanged(nameof(dispense_sensibility));
            }
        }
        private string _dispense_blocking_sensibility = "";
        /// <summary>
        /// ÅÅÒºÒºÃæ¶ÂÈûÁéÃô¶È£º0£º¸ß£»1£ºÖУ»2£ºµÍ
        /// </summary>
        [SugarColumn(ColumnName = "dispense_blocking_sensibility")]
        [Description("ÅÅÒºÒºÃæ¶ÂÈûÁéÃô¶È")]
        public string dispense_blocking_sensibility
        {
            get { return _dispense_blocking_sensibility; }
            set
            {
                if (dispense_blocking_sensibility == value) return; 
                _dispense_blocking_sensibility = value;
                OnPropertyChanged(nameof(dispense_blocking_sensibility));
            }
        }
        private int _dispense_is_knock_wall = 0;
        /// <summary>
        /// ÅÅÒººó£¬ÊÇ·ñÅö±Ú
        /// </summary>
        [SugarColumn(ColumnName = "dispense_is_knock_wall")]
        [Description("ÅÅÒººó£¬ÊÇ·ñÅö±Ú")]
        public int dispense_is_knock_wall
        {
            get { return _dispense_is_knock_wall; }
            set
            {
                if (dispense_is_knock_wall == value) return;
                _dispense_is_knock_wall = value;
                OnPropertyChanged(nameof(dispense_is_knock_wall));
            }
        }
        private int _dispense_knock_direction = 0;
        /// <summary>
        /// ÅÅÒºÅö±ÚµÄ·½Ïò£¬1:¶«·½£»2£ºÎ÷·½£»3£ºÄÏ·½£»4£º±±·½
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_direction")]
        [Description("ÅÅÒºÅö±ÚµÄ·½Ïò")]
        public int dispense_knock_direction
        {
            get { return _dispense_knock_direction; }
            set
            {
                if (dispense_knock_direction == value) return;
                _dispense_knock_direction = value;
                OnPropertyChanged(nameof(dispense_knock_direction));
            }
        }
        private double _dispense_knock_speed = 0;
        /// <summary>
        /// ÅÅÒºÅö±ÚµÄËÙ¶È
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_speed")]
        [Description("ÅÅÒºÅö±ÚµÄËÙ¶È")]
        public double dispense_knock_speed
        {
            get { return _dispense_knock_speed; }
            set
            {
                if (dispense_knock_speed == value) return;
                _dispense_knock_speed = value;
                OnPropertyChanged(nameof(dispense_knock_speed));
            }
        }
        private int _dispense_knock_wall_delay = 0;
        /// <summary>
        /// ÅÅÒºÅö±ÚÖ®ºóµÄÑÓ³Ùʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_wall_delay")]
        [Description("ÅÅÒºÅö±ÚÖ®ºóµÄÑÓ³Ùʱ¼ä")]
        public int dispense_knock_wall_delay
        {
            get { return _dispense_knock_wall_delay; }
            set
            {
                if (dispense_knock_wall_delay == value) return;
                _dispense_knock_wall_delay = value;
                OnPropertyChanged(nameof(dispense_knock_wall_delay));
            }
        }
        private double _dispense_knock_well_height = 0;
        /// <summary>
        /// ÅÅÒºÅö±Ú¿ªÊ¼Ê±¿ÌÓë¿×¿ÚÖ®¼äµÄ¸ß¶È²î
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_well_height")]
        [Description("ÅÅÒºÅö±Ú¿ªÊ¼Ê±¿ÌÓë¿×¿ÚÖ®¼äµÄ¸ß¶È²î")]
        public double dispense_knock_well_height
        {
            get { return _dispense_knock_well_height; }
            set
            {
                if (dispense_knock_well_height == value) return;
                _dispense_knock_well_height = value;
                OnPropertyChanged(nameof(dispense_knock_well_height));
            }
        }
        private double _dispense_knock_wall_length = 0;
        /// <summary>
        /// ÅÅÒºÅö±Ú¿ªÊ¼Ê±¿ÌÓë·½Ïò±ÛµÄ¾àÀë
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_wall_length")]
        [Description("ÅÅÒºÅö±Ú¿ªÊ¼Ê±¿ÌÓë·½Ïò±ÛµÄ¾àÀë")]
        public double dispense_knock_wall_length
        {
            get { return _dispense_knock_wall_length; }
            set
            {
                if (dispense_knock_wall_length == value) return;
                _dispense_knock_wall_length = value;
                OnPropertyChanged(nameof(dispense_knock_wall_length));
            }
        }
 
        private double _dispense_knock_wall_x = 0d;
        /// <summary>
        /// ÅÅÒºÅö±ÚʱxÆ«ÒÆÁ¿%
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_wall_x")]
        [Description("ÎüÒºÅö±ÚʱxÆ«ÒÆÁ¿%")]
        public double dispense_knock_wall_x
        {
            get { return _dispense_knock_wall_x; }
            set
            {
                if (dispense_knock_wall_x == value) return;
                _dispense_knock_wall_x = value;
                OnPropertyChanged(nameof(dispense_knock_wall_x));
            }
        }
 
        private double _dispense_knock_wall_y = 0d;
        /// <summary>
        /// ÅÅÒºÅö±ÚʱyÆ«ÒÆÁ¿%
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_wall_y")]
        [Description("ÎüÒºÅö±ÚʱyÆ«ÒÆÁ¿%")]
        public double dispense_knock_wall_y
        {
            get { return _dispense_knock_wall_y; }
            set
            {
                if (dispense_knock_wall_y == value) return;
                _dispense_knock_wall_y = value;
                OnPropertyChanged(nameof(dispense_knock_wall_y));
            }
        }
 
        private int _dispense_knock_position_type = 0;
        /// <summary>
        /// ÅÅÒºÅö±ÚλÖÃÀàÐÍ£º0£ºLiquid£»1:¿×µ×²¿£»2£º¿×¿ÚÏÂ
        /// </summary>
        [SugarColumn(ColumnName = "dispense_knock_position_type")]
        [Description("ÅÅÒºÅö±ÚλÖÃÀàÐÍ")]
        public int dispense_knock_position_type
        {
            get { return _dispense_knock_position_type; }
            set
            {
                if (dispense_knock_position_type == value) return;
                _dispense_knock_position_type = value;
                OnPropertyChanged(nameof(dispense_knock_position_type));
            }
        }
        private int _liquid_status = 0;
        /// <summary>
        /// ÒºÌå¼Ç¼ÊÇ·ñ¿ÉÓÃ
        /// </summary>
        [SugarColumn(ColumnName = "liquid_status")]
        [Description("ÒºÌå¼Ç¼ÊÇ·ñ¿ÉÓÃ")]
        public int liquid_status
        {
            get { return _liquid_status; }
            set
            {
                if (liquid_status == value) return;
                _liquid_status = value;
                OnPropertyChanged(nameof(liquid_status));
            }
        }
 
        private DateTime _timestamp = DateTime.Now;
        /// <summary>
        /// Êý¾ÝÐиüÐÂʱ¼ä
        /// </summary>
        [SugarColumn(ColumnName = "timestamp")]
        [Description("Êý¾ÝÐиüÐÂʱ¼ä")]
        public DateTime timestamp
        {
            get { return _timestamp; }
            set
            {
                if (timestamp == value) return; 
                _timestamp = value;
                OnPropertyChanged(nameof(timestamp));
            }
        }
        private int _is_default_type = 0;
        /// <summary>
        /// ÊÇ·ñÊÇĬÈÏÀàÐÍ£º1£º Ä¬ÈÏ£»0£º×Ô¶¨Òå
        /// </summary>
        [SugarColumn(ColumnName = "is_default_type")]
        [Description("ÊÇ·ñÊÇĬÈÏÀàÐÍ")]
        public int is_default_type
        {
            get { return _is_default_type; }
            set
            {
                if (is_default_type == value) return;
                _is_default_type = value;
                OnPropertyChanged(nameof(is_default_type));
            }
        }
 
        private double _cutgumspeed = 0d;
        /// <summary>
        /// Çнº¹ý³ÌµÄʱËÙ£¬°Ù·Ö±È
        /// </summary>
        [SugarColumn(ColumnName = "cutgumspeed", IsIgnore =true)]
        [Description("Çнº¹ý³ÌµÄʱËÙ£¬°Ù·Ö±È")]
        public double cutgumspeed
        {
            get { return _cutgumspeed; }
            set
            {
                if (cutgumspeed == value) return;
                _cutgumspeed = value;
                OnPropertyChanged(nameof(cutgumspeed));
            }
        }
 
        private int _divorcedgum_enable = 0;
        /// <summary>
        /// ÊÇ·ñ×öÇнº·ÖÀ붯×÷
        /// </summary>
        [SugarColumn(ColumnName = "divorcedgum_enable", IsIgnore = true)]
        [Description("ÊÇ·ñ×öÇнº·ÖÀ붯×÷")]
        public int divorcedgum_enable
        {
            get { return _divorcedgum_enable; }
            set
            {
                if (divorcedgum_enable == value) return;
                _divorcedgum_enable = value;
                OnPropertyChanged(nameof(divorcedgum_enable));
            }
        }
 
        private double _divorcedgum_xaxis = 0d;
        /// <summary>
        /// ·ÖÀ뽺ÌåxÖá°Ú¶¯¾àÀ룬mm
        /// </summary>
        [SugarColumn(ColumnName = "divorcedgum_xaxis", IsIgnore = true)]
        [Description("·ÖÀ뽺ÌåxÖá°Ú¶¯¾àÀ룬mm")]
        public double divorcedgum_xaxis
        {
            get { return _divorcedgum_xaxis; }
            set
            {
                if (divorcedgum_xaxis == value) return;
                _divorcedgum_xaxis = value;
                OnPropertyChanged(nameof(divorcedgum_xaxis));
            }
        }
 
        private double _divorcedgum_yaxis = 0d;
        /// <summary>
        /// ·ÖÀ뽺ÌåyÖá°Ú¶¯¾àÀ룬mm
        /// </summary>
        [SugarColumn(ColumnName = "divorcedgum_yaxis", IsIgnore = true)]
        [Description("·ÖÀ뽺ÌåyÖá°Ú¶¯¾àÀ룬mm")]
        public double divorcedgum_yaxis
        {
            get { return _divorcedgum_yaxis; }
            set
            {
                if (divorcedgum_xaxis == value) return;
                _divorcedgum_yaxis = value;
                OnPropertyChanged(nameof(divorcedgum_yaxis));
            }
        }
 
        public void Copy(Liquid liquid)
        {
            
        }
    }
}