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