15 lines
434 B
C#
15 lines
434 B
C#
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>();
|
|
} |