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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLY.OBJComponents.OBJ_INTERFACE
{
public class PLCOS_OBJ_INTERFACE
{
#region pack
public class Pack_SetPlanRequest
{
public string objname;
public IEnumerable<string> propertyNames;
public long planid;
}
public class Pack_FeedPlanRequest
{
public long planid;
}
#endregion
#region Get
#endregion
#region Set
#endregion
#region Push
#endregion
#region Call
/// <summary>
/// Pack_SetPlanRequest
/// </summary>
public const UInt16 CALL_SET_PLAN = 3;
/// <summary>
/// Pack_FeedPlanRequest
/// </summary>
public const UInt16 CALL_FEED_PLAN = 4;
#endregion
}
}