12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
- //
- // All rights are reserved. Reproduction or transmission in whole or in part,
- // in any form or by any means, electronic, mechanical or otherwise, is
- // prohibited without the prior written consent of the copyright owner.
- //
- // Filename: ConsentVO.cs
- //
- #endregion
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.Entity {
- /// <summary>
- /// 동의서 전체목록 엔터티 클래스
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[수정 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-07-01 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- [Serializable]
- public class InspectionVO {
- public InspectionVO() {
- foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
- property.SetValue(this, "");
- //if (property.DisplayName == "idx" || property.DisplayName == "formId" || property.DisplayName == "printCnt" || property.DisplayName == "consentMstRid") {
- // property.SetValue(this, 0);
- //} else {
-
- //}
- }
- }
- public string baseCd { get; set; }
- public string supportDeptCd { get; set; }
- public string supportDeptNm { get; set; }
- }
- }
|