using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
public class DeleFile
{
int id;
///
/// 主键
///
public int Id
{
get { return id; }
set { id = value; }
}
int diid;
///
/// 团组
///
public int Diid
{
get { return diid; }
set { diid = value; }
}
string category;
///
/// 类别标识
///
public string Category
{
get { return category; }
set { category = value; }
}
int kind;
///
/// 次级类别
///
public int Kind
{
get { return kind; }
set { kind = value; }
}
string fileName;
///
/// 文件名
///
public string FileName
{
get { return fileName; }
set { fileName = value; }
}
string filePath;
///
/// 文件路径
///
public string FilePath
{
get { return filePath; }
set { filePath = value; }
}
string oper;
///
/// 操作员
///
public string Oper
{
get { return oper; }
set { oper = value; }
}
string opTime;
///
/// 操作时间
///
public string OpTime
{
get { return opTime; }
set { opTime = value; }
}
int isDel;
///
/// 删除标识
///
public int IsDel
{
get { return isDel; }
set { isDel = value; }
}
}
}