13 lines
320 B
C#
13 lines
320 B
C#
namespace ZR.Model.System;
|
|
|
|
[SugarTable("sys_notice_log")]
|
|
public class SysNoticeLog
|
|
{
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long NoticeId { get; set; }
|
|
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long UserId { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
} |