test_question_file.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMISOnline.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// test_question_file
  16. /// </summary>
  17. public partial class test_question_file
  18. {
  19. public test_question_file()
  20. {
  21. this.test_question = new HashSet<test_question>();
  22. this.test_question_provid_answer = new HashSet<test_question_provid_answer>();
  23. }
  24. /// <summary>
  25. /// file_id
  26. /// </summary>
  27. public decimal file_id { get; set; }
  28. /// <summary>
  29. /// url
  30. /// </summary>
  31. public string url { get; set; }
  32. /// <summary>
  33. /// width
  34. /// </summary>
  35. public Nullable<decimal> width { get; set; }
  36. /// <summary>
  37. /// height
  38. /// </summary>
  39. public Nullable<decimal> height { get; set; }
  40. /// <summary>
  41. /// note
  42. /// </summary>
  43. public string note { get; set; }
  44. /// <summary>
  45. /// created_by
  46. /// </summary>
  47. public string created_by { get; set; }
  48. /// <summary>
  49. /// created_date
  50. /// </summary>
  51. public Nullable<System.DateTime> created_date { get; set; }
  52. /// <summary>
  53. /// test_question
  54. /// </summary>
  55. public virtual HashSet<test_question> test_question { get; set; }
  56. /// <summary>
  57. /// test_question_provid_answer
  58. /// </summary>
  59. public virtual HashSet<test_question_provid_answer> test_question_provid_answer { get; set; }
  60. }
  61. }