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; }
///
/// 团组关联ID
///
[SugarColumn(ColumnName = "Diid", ColumnDescription = "团组关联ID", IsNullable = false)]
public int Diid { get; set; }
///
/// 上传人职位
///
[SugarColumn(ColumnName = "UploadJob", ColumnDescription = "上传人职位", IsNullable = false)]
public string UploadJob { get; set; }
}
}