프로젝트

일반

사용자정보

개정판 1c2a2348

ID1c2a23489262aac23449fbac14fcf268d01342eb
상위 fbdb9f2a
하위 5604ab1b

gaqhf 이(가) 약 6년 전에 추가함

dev issue #000 : SPPID 심볼 이미지 비교 기능 누락 소스

Change-Id: Ib02c6d73c4e5d328041603ec04596a6b3f3081f6

차이점 보기:

DTI_PID/BaseModel/Item/Other/Association.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 Converter.BaseModel
8
{
9
    public class Association
10
    {
11
        private string _TYPE;
12
        private string _VALUE;
13

  
14
        public string TYPE { get => _TYPE; set => _TYPE = value; }
15
        public string VALUE { get => _VALUE; set => _VALUE = value; }
16
    }
17
}
DTI_PID/BaseModel/Item/Other/Attribute.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 Converter.BaseModel
8
{
9
    public class Attribute
10
    {
11
        private string _UID;
12
        private string _LENGTH;
13
        private string _EXPRESSION;
14
        private string _DISPLAYATTRIBUTE;
15
        private string _ATTRIBUTETYPE;
16
        private string _ATTRIBUTE;
17
        private string _VALUE;
18

  
19
        public string UID { get => _UID; set => _UID = value; }
20
        public string LENGTH { get => _LENGTH; set => _LENGTH = value; }
21
        public string EXPRESSION { get => _EXPRESSION; set => _EXPRESSION = value; }
22
        public string DISPLAYATTRIBUTE { get => _DISPLAYATTRIBUTE; set => _DISPLAYATTRIBUTE = value; }
23
        public string ATTRIBUTETYPE { get => _ATTRIBUTETYPE; set => _ATTRIBUTETYPE = value; }
24
        public string ATTRIBUTE { get => _ATTRIBUTE; set => _ATTRIBUTE = value; }
25
        public string VALUE { get => _VALUE; set => _VALUE = value; }
26
    }
27
}
DTI_PID/BaseModel/Item/Other/Connector.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 Converter.BaseModel
8
{
9
    public class Connector
10
    {
11
        private string _UID;
12
        private int _CONNECTED_AT;
13
        private string _CONNECTEDITEM;
14
        private string _CONNECTPOINT;
15
        private string _SCENECONNECTPOINT;
16

  
17
        public string UID { get => _UID; set => _UID = value; }
18
        public int CONNECTED_AT { get => _CONNECTED_AT; set => _CONNECTED_AT = value; }
19
        public string CONNECTEDITEM { get => _CONNECTEDITEM; set => _CONNECTEDITEM = value; }
20
        public string CONNECTPOINT { get => _CONNECTPOINT; set => _CONNECTPOINT = value; }
21
        public string SCENECONNECTPOINT { get => _SCENECONNECTPOINT; set => _SCENECONNECTPOINT = value; }
22
    }
23
}
DTI_PID/BaseModel/Item/Other/LineNumberRun.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 Converter.BaseModel
8
{
9
    public class LineNumberRun
10
    {
11
        private string _TYPE;
12
        private List<object> _RUNITEMS = new List<object>();
13

  
14
        public string TYPE { get => _TYPE; set => _TYPE = value; }
15
        public List<object> RUNITEMS { get => _RUNITEMS; set => _RUNITEMS = value; }
16
    }
17
}
DTI_PID/BaseModel/Item/Other/Property.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 Converter.BaseModel
8
{
9
    public class Property
10
    {
11
        private string _UID;
12
        private string _LENGTH;
13
        private string _EXPRESSION;
14
        private string _DISPLAYATTRIBUTE;
15
        private string _ATTRIBUTETYPE;
16
        private string _ATTRIBUTE;
17
        private string _VALUE;
18

  
19
        public string UID { get => _UID; set => _UID = value; }
20
        public string LENGTH { get => _LENGTH; set => _LENGTH = value; }
21
        public string EXPRESSION { get => _EXPRESSION; set => _EXPRESSION = value; }
22
        public string DISPLAYATTRIBUTE { get => _DISPLAYATTRIBUTE; set => _DISPLAYATTRIBUTE = value; }
23
        public string ATTRIBUTETYPE { get => _ATTRIBUTETYPE; set => _ATTRIBUTETYPE = value; }
24
        public string ATTRIBUTE { get => _ATTRIBUTE; set => _ATTRIBUTE = value; }
25
        public string VALUE { get => _VALUE; set => _VALUE = value; }
26
    }
27
}
DTI_PID/BaseModel/Project_Info.cs
16 16
        private string _DBFilePath;
17 17
        private string _TempDirPath;
18 18
        private string _ImageDirPath;
19
        private string _SvgImageDirPath;
20
        private string _SPPID_ImageDirPath;
19 21

  
20 22
        public string DefaultPath {
21 23
            get { return _DefaultPath; }
......
25 27
                _DBFilePath = value + @"\db\ITI_PID.db";
26 28
                _TempDirPath = value + @"\Temp\";
27 29
                _ImageDirPath = value + @"\image\";
30
                _SvgImageDirPath = value + @"\svg\";
31
                _SPPID_ImageDirPath = value + @"\SPPID_Image";
32
                Directory.CreateDirectory(_SPPID_ImageDirPath);
28 33
            }
29 34
        }
30 35

  
......
46 51
        {
47 52
            get { return _ImageDirPath; }
48 53
        }
54
        public string SvgImageDirPath
55
        {
56
            get { return _SvgImageDirPath; }
57
        }
58

  
59
        public string SPPID_ImageDirPath
60
        {
61
            get { return _SPPID_ImageDirPath; }
62
        }
49 63

  
50 64
        public bool Enable { get => _Enable; set => _Enable = value; }
51 65

  

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)