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
{
///
/// 团组Id
///
[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; }
}
}