프로젝트

일반

사용자정보

개정판 d9949772

IDd9949772f230f183166b2de61903f58e7e45c1a5
상위 2aa2a446
하위 c43108c9

유성호이(가) 일년 이상 전에 추가함

issue #0000
Typical
- Main 리스트 컬럼 삭제
- Model 및 DB 삭제
- crud 수정
- 삼성전자 담당자들 요청 반영
ID2연결
- Main 리스트 컬럼 이동 : 프로그램연동으로.
- Model 및 DB 삭제 : path를 동적으로 구하기때문에 불필요한 컬럼
- crud 수정
AVEVA연결
- Main 리스트 컬럼 이동 : 기존 링크와 중복으로 판단되어.
- Model 및 DB 삭제 : 불필요한 컬럼
- crud 수정

Change-Id: I82adc6bc77171aa2ff15ac39489ff44cb6e9857e

차이점 보기:

ID2.Manager/ID2.Manager.Data/Models/Documents.cs
51 51
        [DataMember]
52 52
        public string JobLevel { get; set; }
53 53
        [DataMember]
54
        public string IsTypical { get; set; }
55
        [DataMember]
56 54
        public string PersonInCharge { get; set; }
57 55
        private string _Worker = string.Empty;
58 56
        [DataMember]
......
100 98
        public string FrCreator { get; set; }
101 99
        public int FrCapture { get; set; }
102 100
        [DataMember]
103
        public string ID2Connection { get; set; }
104
        [DataMember]
105 101
        public DateTime? ID2StartDate { get; set; }
106 102
        [DataMember]
107 103
        public DateTime? ID2EndDate { get; set; }
......
110 106
        [DataMember]
111 107
        public string ID2Issues { get; set; }
112 108
        [DataMember]
113
        public string AVEVAConnection { get; set; }
114
        [DataMember]
115 109
        public DateTime? AVEVAConvertDate { get; set; }
116 110
        [DataMember]
117 111
        public DateTime? AVEVAReviewDate { get; set; }
......
174 168

  
175 169
            bool result = other != null && this.DocumentNo == other.DocumentNo && this.RevisonNo == other.RevisonNo && this.System == other.System && this.SubSystemCode == other.SubSystemCode
176 170
                && this.RefProjectCode == other.RefProjectCode && this.IsLatest == other.IsLatest && this.AutoCADFilie == other.AutoCADFilie && this.PDFFile == other.PDFFile
177
                && this.MarkupLink == other.MarkupLink && this.AVEVALink == other.AVEVALink && this.JobLevel == other.JobLevel && this.IsTypical == other.IsTypical
171
                && this.MarkupLink == other.MarkupLink && this.AVEVALink == other.AVEVALink && this.JobLevel == other.JobLevel
178 172
                && this.PersonInCharge == other.PersonInCharge && this.IsDeleted == other.IsDeleted && this.ToIsDiscussion == other.ToIsDiscussion && this.ToRemarks == other.ToRemarks
179 173
                && this.ToCreator == other.ToCreator
180 174
                && this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator
181
                && this.ID2Connection == other.ID2Connection
182 175
                && this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2Status == other.ID2Status
183
                && this.ID2Issues == other.ID2Issues && this.AVEVAConnection == other.AVEVAConnection && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate
176
                && this.ID2Issues == other.ID2Issues && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate
184 177
                && this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues && this.ReviewFilePath == other.ReviewFilePath && this.ReviewFileName == other.ReviewFileName
185 178
                && this.ProdReviewer == other.ProdReviewer && this.ProdIsResult == other.ProdIsResult && this.ProdRemarks == other.ProdRemarks && this.ClientReviewer == other.ClientReviewer
186 179
                && this.ClientIsResult == other.ClientIsResult && this.ClientRemarks == other.ClientRemarks && this.DTIsGateWay == other.DTIsGateWay && this.DTIsImport == other.DTIsImport
......
199 192
        {
200 193
            return this.DocumentNo.GetNullableHash() + this.RevisonNo.GetNullableHash() + this.System.GetNullableHash() + this.SubSystemCode.GetNullableHash()
201 194
                + this.RefProjectCode.GetNullableHash() + this.IsLatest.GetNullableHash() + this.AutoCADFilie.GetNullableHash() + this.PDFFile.GetNullableHash()
202
                + this.MarkupLink.GetNullableHash() + this.AVEVALink.GetNullableHash() + this.JobLevel.GetNullableHash() + this.IsTypical.GetNullableHash()
195
                + this.MarkupLink.GetNullableHash() + this.AVEVALink.GetNullableHash() + this.JobLevel.GetNullableHash()
203 196
                + this.PersonInCharge.GetNullableHash() + this.IsDeleted.GetNullableHash() + this.ToIsDiscussion.GetNullableHash() + this.ToRemarks.GetNullableHash()
204 197
                + this.ToCreator.GetNullableHash()
205 198
                + this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash()
206
                + this.ID2Connection.GetNullableHash()
207 199
                + this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2Status.GetNullableHash()
208
                + this.ID2Issues.GetNullableHash() + this.AVEVAConnection.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash()
200
                + this.ID2Issues.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash()
209 201
                + this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash() + this.ReviewFilePath.GetNullableHash() + this.ReviewFileName.GetNullableHash()
210 202
                + this.ProdReviewer.GetNullableHash() + this.ProdIsResult.GetNullableHash() + this.ProdRemarks.GetNullableHash() + this.ClientReviewer.GetNullableHash()
211 203
                + this.ClientIsResult.GetNullableHash() + this.ClientRemarks.GetNullableHash() + this.DTIsGateWay.GetNullableHash() + this.DTIsImport.GetNullableHash()

내보내기 Unified diff

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