using System; namespace Mtxfw.Model { /// /// user_bank:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class user_livefile { #region Model private int _id; private int _MemberId;//会员ID private int _liveid;//直播ID private string _stream_id;//直播流名称 private string _channel_id;//同直播流名称 private string _file_id;//点播 file ID,在点播平台可以唯一定位一个点播视频文件 private string _file_format;//flv,hls,mp4,aac private Int64 _start_time;//录制文件起始时间戳 private Int64 _end_time;//录制文件结束时间戳 private Int64 _duration;//录制文件时长,单位秒 private Int64 _width;//录制文件宽度 private Int64 _height;//录制文件高度 private UInt64 _file_size;//录制文件大小,单位字节 private string _stream_param;//用户推流 URL 所带参数 private string _video_url;//录制文件文件下载 URL private int _seef;//显示0 隐藏1 private int _LinkID;//排序ID private int _ttype;//类型0直播视频 1后台上传视频 2会员上传视频 3直播截图 private DateTime _addtime;//添加时间 private int _gtype; /// /// /// public int Id { set{ _id=value;} get{return _id;} } /// /// /// public int MemberId { set { _MemberId = value; } get { return _MemberId; } } /// /// /// public int liveid { set { _liveid = value; } get { return _liveid; } } /// /// /// public string stream_id { set { _stream_id = value; } get { return _stream_id; } } /// /// /// public string channel_id { set { _channel_id = value; } get { return _channel_id; } } /// /// /// public string file_id { set { _file_id = value; } get { return _file_id; } } /// /// /// public string file_format { set { _file_format = value; } get { return _file_format; } } /// /// /// public Int64 start_time { set { _start_time = value; } get { return _start_time; } } /// /// /// public Int64 end_time { set { _end_time = value; } get { return _end_time; } } /// /// /// public Int64 duration { set { _duration = value; } get { return _duration; } } /// /// /// public Int64 width { set { _width = value; } get { return _width; } } /// /// /// public Int64 height { set { _height = value; } get { return _height; } } /// /// /// public UInt64 file_size { set { _file_size = value; } get { return _file_size; } } /// /// /// public string stream_param { set { _stream_param = value; } get { return _stream_param; } } /// /// /// public string video_url { set { _video_url = value; } get { return _video_url; } } /// /// /// public int seef { set { _seef = value; } get { return _seef; } } /// /// /// public int LinkID { set { _LinkID = value; } get { return _LinkID; } } /// /// /// public int ttype { set { _ttype = value; } get { return _ttype; } } /// /// /// public DateTime addtime { set { _addtime = value; } get { return _addtime; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }