1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- public class Sys_MessageReadAuth:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int MsgId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int ReadableUId { get; set; }
-
-
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int IsRead { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "datetime")]
- public DateTime ReadTime { get; set; }
- }
- }
|