You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
697 B

using NFine.Application.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.Models
{
/// <summary>
/// 自定义档案列表
/// </summary>
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; }
}
}