123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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 int Type { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int IssuerId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
- [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; }
- }
- }
|