using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DH.RBAC.Model.Sys
{
    [SugarTable("Sys_ItemsDetail")]
    public partial class SysItemDetail : BaseModelEntity
    {
        [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
        public string Id { get; set; }

        [SugarColumn(ColumnName = "ItemId")]
        public string ItemId { get; set; }

        [SugarColumn(ColumnName = "EnCode")]
        public string EnCode { get; set; }

        [SugarColumn(ColumnName = "Name")]
        public string Name { get; set; }


        [SugarColumn(ColumnName = "IsDefault")]
        public string IsDefault { get; set; }


        [SugarColumn(ColumnName = "SortCode")]
        public int? SortCode { get; set; }

    }

}