16 lines
312 B
C#
16 lines
312 B
C#
using JNPF.DependencyInjection;
|
|
|
|
namespace JNPF.Systems.Entitys.Dto.DictionaryData;
|
|
|
|
/// <summary>
|
|
/// 数字字典修改输入.
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class DictionaryDataUpInput : DictionaryDataCrInput
|
|
{
|
|
/// <summary>
|
|
/// id.
|
|
/// </summary>
|
|
public string id { get; set; }
|
|
}
|