123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_DeleFile")]
- public class Grp_DeleFile:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Category { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Kind { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string FileName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string FilePath { get; set; }
- }
- }
|