温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:燕赵宽频点播系统V1.0源码
当前文件路径:hevod/Model/Films.cs

1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Web; 5
6
namespace Model 7
{ 8
/// <summary> 9
/// films实体类 10
/// </summary> 11
public class Films 12
{ 13
private int _id; 14
private int _pathId;//服务器路径 15
private string _name; 16
private bool _isCommend; 17
private string _director; 18
private string _players; 19
private int _typeId; 20
private int _hits; 21
private int _fromCountry; //来自 22
private string _pic;//电影海报,暂时默认为pics/{id}.jpg 23
private string _intro; 24
private string _url; 25
private int _num;//集数 26
private string _format;//电影格式 27
private DateTime _pDate;//更新时间 28
29
public int Id 30
{ 31
get { return _id; } 32
set { _id = value; } 33
} 34
35
public int PathId 36
{ 37
get { return _pathId; } 38
set { _pathId = value; } 39
} 40
public string Name 41
{ 42
get { return _name; } 43
set { _name = value; } 44
} 45
public bool IsCommend 46
{ 47
get { return _isCommend; } 48
set { _isCommend = value; } 49
} 50
public string Director 51
{ 52
get { return _director; } 53
set{ _director=value;} 54
55
} 56
57
public string Players 58
{ 59
get { return _players; } 60
set { _players = value; } 61
} 62
public int TypeId 63
{ 64
get { return _typeId; } 65
set { _typeId = value; } 66
} 67
public int Hits 68
{ 69
get { return _hits; } 70
set { _hits = value; } 71
} 72
73
public int FromCountry 74
{ 75
get { return _fromCountry; } 76
set { _fromCountry = value; } 77
} 78
public string Pic 79
{ 80
get { return _pic; } 81
set { _pic = value; } 82
} 83
public string Intro 84
{ 85
get { return _intro; } 86
set { _intro = value; } 87
} 88
public string Url 89
{ 90
get { return _url; } 91
set { _url = value; } 92
} 93
public int Num 94
{ 95
get { return _num; } 96
set { _num = value; } 97
} 98
public string Format 99
{ 100
get { return _format; } 101
set { _format = value; } 102
} 103
public DateTime PDate 104
{ 105
get { return _pDate; } 106
set { _pDate = value; } 107
} 108
} 109
} 110





}