using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 附件表 /// [Serializable] public partial class T_Sys_Accessories { public T_Sys_Accessories() { } #region Model private int _f_fileid; private string _f_filename; private string _f_filetype; private string _f_fileurl; private string _f_usercode; private DateTime? _f_addtime; private long? _f_size; private string _f_oriname; /// /// 附件id /// public int F_FileId { set { _f_fileid = value; } get { return _f_fileid; } } /// /// 附件名称 /// public string F_FileName { set { _f_filename = value; } get { return _f_filename; } } /// /// 附件类型(后缀名) /// public string F_FileType { set { _f_filetype = value; } get { return _f_filetype; } } /// /// 上传路径 /// public string F_FileUrl { set { _f_fileurl = value; } get { return _f_fileurl; } } /// /// 添加人工号 /// public string F_UserCode { set { _f_usercode = value; } get { return _f_usercode; } } /// /// 上传时间 /// public DateTime? F_AddTime { set { _f_addtime = value; } get { return _f_addtime; } } /// /// 附件大小 /// public long? F_Size { set { _f_size = value; } get { return _f_size; } } /// /// 文件原名 /// public string F_OriName { get { return _f_oriname; } set { _f_oriname = value; } } #endregion Model } }