16 lines
365 B
C#
16 lines
365 B
C#
namespace ZR.ServiceCore.Model;
|
|
|
|
[SugarTable("sys_field")]
|
|
[Tenant("0")]
|
|
public class SysField
|
|
{
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
|
|
public string FieldName { get; set; }
|
|
|
|
public string FullName { get; set; }
|
|
|
|
public string FieldType { get; set; }
|
|
} |