123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
- public class Grp_GroupShareFile:EntityBase
- {
-
-
-
- [SugarColumn(ColumnName = "FileName", ColumnDescription = "文件名称", IsNullable = false)]
- public string FileName { get; set; }
-
-
-
- [SugarColumn(ColumnName = "FilePath", ColumnDescription = "文件存储路径", IsNullable = false)]
- public string FilePath { get; set; }
-
-
-
- [SugarColumn(ColumnName = "FileType", ColumnDescription = "文件所属类型", IsNullable = false)]
- public int FileType { get; set; }
-
-
-
- [SugarColumn(ColumnName = "Diid", ColumnDescription = "团组关联ID", IsNullable = false)]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(ColumnName = "UploadJob", ColumnDescription = "上传人职位", IsNullable = false)]
- public string UploadJob { get; set; }
- }
- }
|