TeacherCommunicateView.cs 855 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.DQPSystem
  6. {
  7. public class TeacherCommunicateView
  8. {
  9. public Guid UserID { get; set; }
  10. public Guid? ClassmajorID { get; set; }
  11. public string ClassmajorNo { get; set; }
  12. public string ClassmajorName { get; set; }
  13. public string LoginID { get; set; }
  14. public string Name { get; set; }
  15. public string QQ { get; set; }
  16. public string HeadImage
  17. {
  18. get
  19. {
  20. if (!string.IsNullOrEmpty(QQ))
  21. {
  22. return "http://q2.qlogo.cn/headimg_dl?dst_uin=" + QQ + "&spec=100";
  23. }
  24. else
  25. {
  26. return null;
  27. }
  28. }
  29. }
  30. }
  31. }