12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
- [SugarTable("Res_Memo")]
- public class Res_MemoInfo : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DepartmentId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int ReadLevel { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
- public string Title { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
- public string Abstracts { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
- public string MDFilePath { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
- public DateTime LastedEditDt { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int LastedEditor { get; set; }
- }
- }
|