using NFine.Application.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NFine.Application.Models { /// /// 自定义档案列表 /// public class SysEnumValueDto : IElementKey { public int key { get; set; } public string F_EnCode { get; set; } public string F_FullName { get; set; } public string value { get; set; } public string label { get; set; } public string Ext1 { get; set; } public string Ext2 { get; set; } public string Ext3 { get; set; } public string Ext4 { get; set; } } }