1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models.Views
- {
- public class DataItemModel
- {
- #region 实体成员
-
-
-
- public string ItemId { get; set; }
-
-
-
- public string EnCode { get; set; }
-
-
-
- public string ItemDetailId { get; set; }
-
-
-
- public string ParentId { get; set; }
-
-
-
- public string ItemName { get; set; }
-
-
-
- public string ItemValue { get; set; }
-
-
-
- public string SimpleSpelling { get; set; }
-
-
-
- public int? SortCode { get; set; }
-
-
-
- public int? EnabledMark { get; set; }
-
-
-
- public bool IsHot { get; set; }
-
-
-
- public bool IsRecommend { get; set; }
-
-
-
- public bool IsShowHomePage { get; set; }
- #endregion
- }
- }
|