| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- namespace XYFDRQ.Model
- {
- /// <summary>
- /// 附件表
- /// </summary>
- [Serializable]
- public partial class T_Bus_Accessories
- {
- public T_Bus_Accessories()
- {}
- #region Model
- private string _filecode;
- private string _filename;
- private string _filepath;
- private string _fileext;
- private string _tablename;
- private DateTime? _addtime;
- private int? _userid;
- /// <summary>
- /// 附件编号
- /// </summary>
- public string FileCode
- {
- set{ _filecode=value;}
- get{return _filecode;}
- }
- /// <summary>
- /// 附件名称
- /// </summary>
- public string FileName
- {
- set{ _filename=value;}
- get{return _filename;}
- }
- /// <summary>
- /// 附件路径
- /// </summary>
- public string FilePath
- {
- set{ _filepath=value;}
- get{return _filepath;}
- }
- /// <summary>
- /// 附件后缀名
- /// </summary>
- public string FileExt
- {
- set{ _fileext=value;}
- get{return _fileext;}
- }
- /// <summary>
- /// 附件所属表名
- /// </summary>
- public string TableName
- {
- set{ _tablename=value;}
- get{return _tablename;}
- }
- /// <summary>
- /// 添加时间
- /// </summary>
- public DateTime? AddTime
- {
- set{ _addtime=value;}
- get{return _addtime;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? UserId
- {
- set{ _userid=value;}
- get{return _userid;}
- }
- #endregion Model
- }
- }
|