1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- [SugarTable("Sys_Message")]
- public class Sys_Message :EntityBase
- {
-
-
-
-
-
-
-
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public MessageTypeEnum Type { get; set; }
-
-
-
-
-
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? Param { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IssuerId { get; set; } = 4;
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; } = 0;
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "varchar(100)")]
- public string Title { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "varchar(500)")]
- public string Content { get; set; }
-
-
-
- [SugarColumn(IsNullable = true , ColumnDataType = "datetime")]
- public DateTime ReleaseTime { get; set; }
- }
- }
|