개정판 4e320fcb
dev issue #000 : add model and APIDUtils
Change-Id: Ibb1edf1a842efd7e7c89a8e4b73e785fd7dd535f
DTI_PID/APIDConverter/AVEVA.PID.CustomizationUtility_ACAD2018_x64.csproj | ||
---|---|---|
85 | 85 |
<Reference Include="WindowsBase" /> |
86 | 86 |
</ItemGroup> |
87 | 87 |
<ItemGroup> |
88 |
<Compile Include="Utils\APIDUtils.cs" /> |
|
88 | 89 |
<Compile Include="Form\APIDConverter.cs"> |
89 | 90 |
<SubType>Form</SubType> |
90 | 91 |
</Compile> |
... | ... | |
101 | 102 |
<Compile Include="Form\MappingForm.Designer.cs"> |
102 | 103 |
<DependentUpon>MappingForm.cs</DependentUpon> |
103 | 104 |
</Compile> |
105 |
<Compile Include="Model\Line.cs" /> |
|
106 |
<Compile Include="Model\PlantItem.cs" /> |
|
107 |
<Compile Include="Model\Symbol.cs" /> |
|
104 | 108 |
<Compile Include="PIDCustomization.cs" /> |
105 | 109 |
<Compile Include="Form\ProjectForm.cs"> |
106 | 110 |
<SubType>Form</SubType> |
DTI_PID/APIDConverter/Model/Line.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace AVEVA.PID.CustomizationUtility.Model |
|
8 |
{ |
|
9 |
public class Line : PlantItem |
|
10 |
{ |
|
11 |
|
|
12 |
} |
|
13 |
} |
DTI_PID/APIDConverter/Model/PlantItem.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace AVEVA.PID.CustomizationUtility.Model |
|
8 |
{ |
|
9 |
public class PlantItem |
|
10 |
{ |
|
11 |
public string UID { get; set; } |
|
12 |
} |
|
13 |
} |
DTI_PID/APIDConverter/Model/Symbol.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace AVEVA.PID.CustomizationUtility.Model |
|
8 |
{ |
|
9 |
public class Symbol : PlantItem |
|
10 |
{ |
|
11 |
|
|
12 |
} |
|
13 |
} |
DTI_PID/APIDConverter/Utils/APIDUtils.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace AVEVA.PID.CustomizationUtility |
|
8 |
{ |
|
9 |
public class APIDUtils |
|
10 |
{ |
|
11 |
|
|
12 |
} |
|
13 |
} |
내보내기 Unified diff