QuestionnaireItem.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace YZXYH.Repository.Models
  7. {
  8. [Serializable]
  9. public partial class QuestionnaireItem
  10. {
  11. public string Id { get; set; }
  12. public string QuestionnaireNo { get; set; }
  13. public string QuestionnaireTitle { get; set; }
  14. public string FullName { get; set; }
  15. public short Gender { get; set; }
  16. public short GraduationYear { get; set; }
  17. public string Class1 { get; set; }
  18. public short Class2 { get; set; }
  19. public string Headmaster { get; set; }
  20. public string Profession { get; set; }
  21. public string WorkUnit { get; set; }
  22. public string Duties { get; set; }
  23. public string Industry { get; set; }
  24. public string WorkUnitAddress { get; set; }
  25. public string FamilyAddress { get; set; }
  26. public string Speciality { get; set; }
  27. public string Hobby { get; set; }
  28. public string QQ { get; set; }
  29. public string WeChat { get; set; }
  30. public string PhoneNumber { get; set; }
  31. public string Email { get; set; }
  32. public DateTime? CreateDate { get; set; }
  33. public string Remark { get; set; }
  34. public short JoinAddressBook { get; set; }
  35. }
  36. }