Files
g.hnyhua.cn/Mtxfw.Model/user_livefile.cs
2026-02-07 15:48:27 +08:00

197 lines
4.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Mtxfw.Model
{
/// <summary>
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[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;//flvhlsmp4aac
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;
/// <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
}
}