添加项目文件。
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using JNPF.Systems.Entitys.System;
|
||||
|
||||
namespace JNPF.Systems.Entitys.Dto.DictionaryData;
|
||||
|
||||
/// <summary>
|
||||
/// 数据字典导入输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class DictionaryDataExportInput
|
||||
{
|
||||
public List<DictionaryTypeEntity> list { get; set; } = new List<DictionaryTypeEntity>();
|
||||
|
||||
public List<DictionaryDataEntity> modelList { get; set; } = new List<DictionaryDataEntity>();
|
||||
}
|
||||
Reference in New Issue
Block a user