Lm.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace WZExport.Models
  5. {
  6. public partial class Lm
  7. {
  8. public int Channelid { get; set; }
  9. public int Siteid { get; set; }
  10. public string Chnlname { get; set; }
  11. public string Chnldesc { get; set; }
  12. public string Chnltable { get; set; }
  13. public string Chnlquery { get; set; }
  14. public int? Chnlprop { get; set; }
  15. public int Parentid { get; set; }
  16. public int Chnlorder { get; set; }
  17. public int? Schedule { get; set; }
  18. public string Chnldatapath { get; set; }
  19. public string Chnlorderby { get; set; }
  20. public string Attribute { get; set; }
  21. public string Cruser { get; set; }
  22. public DateTime? Crtime { get; set; }
  23. public int Status { get; set; }
  24. public int Chnltype { get; set; }
  25. public int Chnloutlinetemp { get; set; }
  26. public int Chnldetailtemp { get; set; }
  27. public short Publishpro { get; set; }
  28. public string Operuser { get; set; }
  29. public DateTime? Opertime { get; set; }
  30. public string Linkurl { get; set; }
  31. public string Contentaddeditpage { get; set; }
  32. public string Contentlistpage { get; set; }
  33. public string Contentshowpage { get; set; }
  34. public string Outlinefileds { get; set; }
  35. public string Outlinedbfields { get; set; }
  36. public short? Iscluster { get; set; }
  37. public string Showfields { get; set; }
  38. public string Fieldswidth { get; set; }
  39. public string Baseprops { get; set; }
  40. public string Otherprops { get; set; }
  41. public string Advanceprops { get; set; }
  42. public string Toolbar { get; set; }
  43. public string Advtoolbar { get; set; }
  44. public int Iscontainschildren { get; set; }
  45. public string Metasynfields { get; set; }
  46. public string Fluencexml { get; set; }
  47. public short? Usedoclevel { get; set; }
  48. public DateTime? Lastmodifytime { get; set; }
  49. public string Viewprops { get; set; }
  50. public string Neededprops { get; set; }
  51. public int Inherit { get; set; }
  52. [NotMapped]
  53. public IEnumerable<Lm> Childrens { get; set; }
  54. }
  55. }