MediaSupplierView.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using OASystem.Domain.Attributes;
  2. using OASystem.Domain.Entities.Resource;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OASystem.Domain.ViewModels.Resource
  9. {
  10. public class MediaSupplierView : Res_MediaSuppliers
  11. {
  12. }
  13. public class MediaSupplierInfoView
  14. {
  15. public int Id { get; set; }
  16. public int TypeId { get; set; }
  17. [Encrypted]
  18. public string Privince { get; set; }
  19. [Encrypted]
  20. public string City { get; set; }
  21. [Encrypted]
  22. public string UnitName { get; set; }
  23. [Encrypted]
  24. public string UnitAbbreviation { get; set; }
  25. [Encrypted]
  26. public string UnitAddress { get; set; }
  27. [Encrypted]
  28. public string Contact { get; set; }
  29. public int Sex { get; set; }
  30. [Encrypted]
  31. public string Post { get; set; }
  32. [Encrypted]
  33. public string Fax { get; set; }
  34. [Encrypted]
  35. public string Tel { get; set; }
  36. [Encrypted]
  37. public string Email { get; set; }
  38. [Encrypted]
  39. public string WeChat { get; set; }
  40. [Encrypted]
  41. public string Remark { get; set; }
  42. }
  43. public class PageItemView
  44. {
  45. public int Id { get; set; }
  46. [Encrypted]
  47. public string Privince { get; set; }
  48. [Encrypted]
  49. public string City { get; set; }
  50. [Encrypted]
  51. public string UnitName { get; set; }
  52. [Encrypted]
  53. public string Contact { get; set; }
  54. public int Sex { get; set; }
  55. [Encrypted]
  56. public string Post { get; set; }
  57. [Encrypted]
  58. public string Tel { get; set; }
  59. public string CreateUserName { get; set; }
  60. public DateTime CreateTime { get; set; }
  61. }
  62. }