123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace WZExport.Models
- {
- public partial class Lm
- {
- public int Channelid { get; set; }
- public int Siteid { get; set; }
- public string Chnlname { get; set; }
- public string Chnldesc { get; set; }
- public string Chnltable { get; set; }
- public string Chnlquery { get; set; }
- public int? Chnlprop { get; set; }
- public int Parentid { get; set; }
- public int Chnlorder { get; set; }
- public int? Schedule { get; set; }
- public string Chnldatapath { get; set; }
- public string Chnlorderby { get; set; }
- public string Attribute { get; set; }
- public string Cruser { get; set; }
- public DateTime? Crtime { get; set; }
- public int Status { get; set; }
- public int Chnltype { get; set; }
- public int Chnloutlinetemp { get; set; }
- public int Chnldetailtemp { get; set; }
- public short Publishpro { get; set; }
- public string Operuser { get; set; }
- public DateTime? Opertime { get; set; }
- public string Linkurl { get; set; }
- public string Contentaddeditpage { get; set; }
- public string Contentlistpage { get; set; }
- public string Contentshowpage { get; set; }
- public string Outlinefileds { get; set; }
- public string Outlinedbfields { get; set; }
- public short? Iscluster { get; set; }
- public string Showfields { get; set; }
- public string Fieldswidth { get; set; }
- public string Baseprops { get; set; }
- public string Otherprops { get; set; }
- public string Advanceprops { get; set; }
- public string Toolbar { get; set; }
- public string Advtoolbar { get; set; }
- public int Iscontainschildren { get; set; }
- public string Metasynfields { get; set; }
- public string Fluencexml { get; set; }
- public short? Usedoclevel { get; set; }
- public DateTime? Lastmodifytime { get; set; }
- public string Viewprops { get; set; }
- public string Neededprops { get; set; }
- public int Inherit { get; set; }
- [NotMapped]
- public IEnumerable<Lm> Childrens { get; set; }
- }
- }
|