using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto
{
///
/// 修改
///
public class SysDictUpdateDto
{
///
/// 编号
///
public long id { get; set; }
///
/// 字典类型
///
public string? dictType { get; set; }
///
/// 描述
///
public string? description { get; set; }
///
/// 备注信息
///
public string? remarks { get; set; }
}
}