197 lines
4.7 KiB
C#
197 lines
4.7 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// user_bank:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class user_livefile
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private int _MemberId;//<2F><>ԱID
|
|||
|
|
private int _liveid;//ֱ<><D6B1>ID
|
|||
|
|
private string _stream_id;//ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private string _channel_id;//ֱͬ<CDAC><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private string _file_id;//<2F>㲥 file ID<49><44><EFBFBD>ڵ㲥ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD>Ψһ<CEA8><D2BB>λһ<CEBB><D2BB><EFBFBD>㲥<EFBFBD><E3B2A5>Ƶ<EFBFBD>ļ<EFBFBD>
|
|||
|
|
private string _file_format;//flv<6C><76>hls<6C><73>mp4<70><34>aac
|
|||
|
|
private Int64 _start_time;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>ʼʱ<CABC><CAB1><EFBFBD><EFBFBD>
|
|||
|
|
private Int64 _end_time;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
|||
|
|
private Int64 _duration;//¼<><C2BC><EFBFBD>ļ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
|
private Int64 _width;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private Int64 _height;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC>߶<EFBFBD>
|
|||
|
|
private UInt64 _file_size;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>λ<EFBFBD>ֽ<EFBFBD>
|
|||
|
|
private string _stream_param;//<2F>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD> URL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private string _video_url;//¼<><C2BC><EFBFBD>ļ<EFBFBD><C4BC>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD> URL
|
|||
|
|
private int _seef;//<2F><>ʾ0 <20><><EFBFBD><EFBFBD>1
|
|||
|
|
private int _LinkID;//<2F><><EFBFBD><EFBFBD>ID
|
|||
|
|
private int _ttype;//<2F><><EFBFBD><EFBFBD>0ֱ<30><D6B1><EFBFBD><EFBFBD>Ƶ 1<><31>̨<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>Ƶ 2<><32>Ա<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>Ƶ 3ֱ<33><D6B1><EFBFBD><EFBFBD>ͼ
|
|||
|
|
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _gtype;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int MemberId
|
|||
|
|
{
|
|||
|
|
set { _MemberId = value; }
|
|||
|
|
get { return _MemberId; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int liveid
|
|||
|
|
{
|
|||
|
|
set { _liveid = value; }
|
|||
|
|
get { return _liveid; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string stream_id
|
|||
|
|
{
|
|||
|
|
set { _stream_id = value; }
|
|||
|
|
get { return _stream_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string channel_id
|
|||
|
|
{
|
|||
|
|
set { _channel_id = value; }
|
|||
|
|
get { return _channel_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string file_id
|
|||
|
|
{
|
|||
|
|
set { _file_id = value; }
|
|||
|
|
get { return _file_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string file_format
|
|||
|
|
{
|
|||
|
|
set { _file_format = value; }
|
|||
|
|
get { return _file_format; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 start_time
|
|||
|
|
{
|
|||
|
|
set { _start_time = value; }
|
|||
|
|
get { return _start_time; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 end_time
|
|||
|
|
{
|
|||
|
|
set { _end_time = value; }
|
|||
|
|
get { return _end_time; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 duration
|
|||
|
|
{
|
|||
|
|
set { _duration = value; }
|
|||
|
|
get { return _duration; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 width
|
|||
|
|
{
|
|||
|
|
set { _width = value; }
|
|||
|
|
get { return _width; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 height
|
|||
|
|
{
|
|||
|
|
set { _height = value; }
|
|||
|
|
get { return _height; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public UInt64 file_size
|
|||
|
|
{
|
|||
|
|
set { _file_size = value; }
|
|||
|
|
get { return _file_size; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string stream_param
|
|||
|
|
{
|
|||
|
|
set { _stream_param = value; }
|
|||
|
|
get { return _stream_param; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string video_url
|
|||
|
|
{
|
|||
|
|
set { _video_url = value; }
|
|||
|
|
get { return _video_url; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int seef
|
|||
|
|
{
|
|||
|
|
set { _seef = value; }
|
|||
|
|
get { return _seef; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int LinkID
|
|||
|
|
{
|
|||
|
|
set { _LinkID = value; }
|
|||
|
|
get { return _LinkID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int ttype
|
|||
|
|
{
|
|||
|
|
set { _ttype = value; }
|
|||
|
|
get { return _ttype; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime addtime
|
|||
|
|
{
|
|||
|
|
set { _addtime = value; }
|
|||
|
|
get { return _addtime; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int gtype
|
|||
|
|
{
|
|||
|
|
set { _gtype = value; }
|
|||
|
|
get { return _gtype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|