using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
public class VisaFile
{
int id;
public int Id
{
get { return id; }
set { id = value; }
}
string continent;
///
/// 洲
///
public string Continent
{
get { return continent; }
set { continent = value; }
}
string country;
///
/// 国家
///
public string Country
{
get { return country; }
set { country = value; }
}
string category;
///
/// 种类
///
public string Category
{
get { return category; }
set { category = value; }
}
string fileName;
///
/// 文件名
///
public string FileName
{
get { return fileName; }
set { fileName = value; }
}
string filePath;
///
/// 文件目录
///
public string FilePath
{
get { return filePath; }
set { filePath = value; }
}
int oper;
///
/// 操作者
///
public int Oper
{
get { return oper; }
set { oper = value; }
}
string opDate;
///
/// 操作时间
///
public string OpDate
{
get { return opDate; }
set { opDate = value; }
}
int isdel;
///
/// 删除标识
///
public int Isdel
{
get { return isdel; }
set { isdel = value; }
}
}
}