1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- namespace YiSha.Model.Param.KJH
- {
-
-
-
-
-
- public class ZT_ArticleListParam
- {
-
-
-
- public string Title { get; set; }
-
-
-
- public int? Cid { get; set; }
- public string CName { get; set; }
- public int? TagId { get; set; }
- }
-
-
-
- public class TZ_ArticleParam
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public int Cid { get; set; }
-
-
-
- public string CName { get; set; }
-
-
-
- public string ShortDetail { get; set; }
-
-
-
- public string Detail { get; set; }
-
-
-
- public int EditId { get; set; }
-
-
-
- public string Editor { get; set; }
- }
- public class ZT_ColumnDtoParam
- {
- public int? Cid { get;set; }
- public int? TagId { get; set; }
- }
- }
|