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
using DataEntity;
using System;
using System.Collections.Generic;
using System.Data;
using System.Windows;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Collections.ObjectModel;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 超声探测
    /// </summary>
    public class MethodUltrasonic : IEntity
    {
        /// <summary>
        /// 是否从此命令开始
        /// </summary>
        public string isrun { get; set; } = "";
        /// <summary>
        /// 命令是否可用
        /// </summary>
        public string status { get; set; } = "可用";
 
        /// <summary>
        /// 命令名称
        /// </summary>
        public string name { get; set; } = "";
 
        public string strIndex { get; set; } = "";
 
        private string _label = "";
        /// <summary>
        /// 命令标签名
        /// </summary>
        public string label
        {
            get { return _label; }
            set
            {
                _label = value;
                OnPropertyChanged("label");
            }
        }
 
        /// <summary>
        /// 超声属性信息
        /// </summary>
        public MethodUltrasonicChild ultrasonicData { get; set; } = new MethodUltrasonicChild();
    }
}