17 lines
386 B
C#
17 lines
386 B
C#
namespace ZR.ServiceCore.Model.Dto;
|
|
|
|
public class SysFieldDto
|
|
{
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long Id { get; set; }
|
|
|
|
public string FieldName { get; set; }
|
|
|
|
public string FullName { get; set; }
|
|
|
|
public string FieldType { get; set; }
|
|
|
|
public string IsClass { get; set; }
|
|
|
|
public bool IsPermission { get; set; }
|
|
} |