11 lines
296 B
C#
11 lines
296 B
C#
namespace ZR.ServiceCore.Model;
|
|
[SugarTable("sys_field_block")]
|
|
[Tenant("0")]
|
|
public class SysFieldBlock
|
|
{
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long BlockId { get; set; }
|
|
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long FieldId { get; set; }
|
|
} |