ConsentImageVO.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity
  6. {
  7. [Serializable]
  8. public class ConsentImageVO
  9. {
  10. public ConsentImageVO()
  11. {
  12. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  13. {
  14. if (property.DisplayName == "consentMstRid" || property.DisplayName == "FormRid" || property.DisplayName == "ConsentImageRid")
  15. {
  16. property.SetValue(this, 0);
  17. }
  18. else
  19. {
  20. property.SetValue(this, "");
  21. }
  22. }
  23. }
  24. public int ConsentMstRid { get; set; }
  25. public int ConsentImageRid { get; set; }
  26. public int FormRid { get; set; }
  27. public string ImagePath { get; set; }
  28. public string ImageFilename { get; set; }
  29. public string CompleteYn { get; set; }
  30. public string CreateUserId { get; set; }
  31. public string CreateDatetime { get; set; }
  32. }
  33. }