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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel.DataAnnotations;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace IStation.Model
| {
| public partial class DataDockingConfigure
| {
| /// <summary>
| /// 数据格式
| /// </summary>
| public enum eDataFormat
| {
| /// <summary>
| /// 常规
| /// </summary>
| General = 1,
|
| /// <summary>
| /// 振动
| /// </summary>
| Vibration = 2,
|
| /// <summary>
| /// 混合
| /// </summary>
| Mix =3,
| }
|
| /// <summary>
| /// 对接方式
| /// </summary>
| public enum eDockingMode
| {
| /// <summary>
| /// 标准对接
| /// </summary>
| Standard = 0,
|
| /// <summary>
| /// 中间库对接
| /// </summary>
| MiddleLib = 1,
|
| /// <summary>
| /// 接口对接
| /// </summary>
| Api = 2,
|
| /// <summary>
| /// 协议对接
| /// </summary>
| Socket = 3,
| }
|
|
| }
| }
|
|