Crm_VisaCustomerSchool.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Customer
  7. {
  8. /// <summary>
  9. /// 客户学历表
  10. /// </summary>
  11. [SugarTable("Crm_VisaCustomerSchool")]
  12. public class Crm_VisaCustomerSchool:EntityBase
  13. {
  14. /// <summary>
  15. /// 客户表ID
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int DcId { get; set; }
  19. /// <summary>
  20. /// 学校名称和学历
  21. /// </summary>
  22. [SugarColumn(IsNullable =true,ColumnDataType = "varchar(100)")]
  23. public string School { get; set; }
  24. /// <summary>
  25. /// 学校地址
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
  28. public string Address { get; set; }
  29. /// <summary>
  30. /// 指导老师
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  33. public string Teacher { get; set; }
  34. /// <summary>
  35. /// 学历
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  38. public string Education { get; set; }
  39. /// <summary>
  40. /// 所学课程或专业名称
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  43. public string Subject { get; set; }
  44. /// <summary>
  45. /// 就读起始日
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
  48. public DateTime StudyStart { get; set; }
  49. /// <summary>
  50. /// 就读结束日
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
  53. public DateTime StudyEnd { get; set; }
  54. }
  55. }