📄 fileinfo.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 16:05:29
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class FileInfo
{
private int fileId;
private FileTypeInfo fileType;
private UserInfo fileOwner;
private string fileName = String.Empty;
private string remark = String.Empty;
private DateTime createDate;
private int parentId;
private string filePath = String.Empty;
private int ifDelete;
public FileInfo() { }
public FileInfo(int _fileid, FileTypeInfo _filetype, UserInfo _fileower, String _filename, String _remark, DateTime _createdate, int _parentid, String _filepath, int _ifdelete)
{
this.fileId = _fileid;
this.fileType = _filetype;
this.fileOwner = _fileower;
this.fileName = _filename;
this.remark = _remark;
this.createDate = _createdate;
this.parentId = _parentid;
this.filePath = _filepath;
this.ifDelete = _ifdelete;
}
public FileInfo(FileTypeInfo _filetype, UserInfo _fileower, String _filename, String _remark, DateTime _createdate, int _parentid, String _filepath, int _ifdelete)
{
this.fileType = _filetype;
this.fileOwner = _fileower;
this.fileName = _filename;
this.remark = _remark;
this.createDate = _createdate;
this.parentId = _parentid;
this.filePath = _filepath;
this.ifDelete = _ifdelete;
}
public int FileId
{
get { return this.fileId; }
set { this.fileId = value; }
}
public FileTypeInfo FileType
{
get { return this.fileType; }
set { this.fileType = value; }
}
public UserInfo FileOwner
{
get { return this.fileOwner; }
set { this.fileOwner = value; }
}
public string FileName
{
get { return this.fileName; }
set { this.fileName = value; }
}
public string Remark
{
get { return this.remark; }
set { this.remark = value; }
}
public DateTime CreateDate
{
get { return this.createDate; }
set { this.createDate = value; }
}
public int ParentId
{
get { return this.parentId; }
set { this.parentId = value; }
}
public string FilePath
{
get { return this.filePath; }
set { this.filePath = value; }
}
public int IfDelete
{
get { return this.ifDelete; }
set { this.ifDelete = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -