Lm.cs 2.2 KB

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