using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
    /// 
    /// 枚举表单 
    /// 
    [Description("枚举表单")]
    public class T_FM_ENUMS : MesEntityBase
    {
        /// 
        /// 枚举类型
        /// 
        [Description("类型")]
        [DataFieldLength(50)]
        public string CODE { get; set; }
        /// 
        /// 枚举值
        /// 
        [Description("值")]
        public int VALUE { get; set; }
        /// 
        /// 枚举说明
        /// 
        [Description("说明")]
        [DataFieldLength(50)]
        public string NAME { get; set; }
        /// 
        /// 排序
        /// 
        [Description("排序")]
        public int NUM { get; set; }
    }
}