wzp
2021-07-19 58ec6ffd2dc6a3e490e28026dd559352678a273d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using DapperExtensions;
 
namespace FineAdmin.Model
{
    [Table("dbsys_ItemsDetail")]
    public class ItemsDetailModel : Entity
    {
        /// <summary>
        /// 主表主键
        /// </summary>
        public int ItemId { get; set; }
        /// <summary>
        /// 编码
        /// </summary>
        public string ItemCode { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        public string ItemName { get; set; }
        /// <summary>
        /// 字典分类
        /// </summary>
        [Computed]
        public string ItemType { get; set; }
    }
}