using System; using System.Collections.Generic; namespace OT.Model { /// /// OTB_SYS_Attachments:實體類(屬性說明自動提取資料庫欄位的描述訊息) /// [Serializable] public partial class OTB_SYS_Attachments { public OTB_SYS_Attachments() { } #region Model private string _targetrelationid; private string _sourcerelationid; private string _filename; private string _subfilename; private string _filepath; private int? _filesize; private byte[] _filecontent; private string _filetype; private string _isprotected; private string _ispublic; private string _memo; private string _createuser; private DateTime _createdate; private string _modifyuser; private DateTime _modifydate; public string IsTitlePage { get; set; } /// /// 目標方關係編號 /// public string TargetRelationID { set { _targetrelationid = value; } get { return _targetrelationid; } } /// /// 來源方關係編號 /// public string SourceRelationID { set { _sourcerelationid = value; } get { return _sourcerelationid; } } /// /// 檔案名稱 /// public string FileName { set { _filename = value; } get { return _filename; } } /// /// 檔案副檔名 /// public string SubFileName { set { _subfilename = value; } get { return _subfilename; } } /// /// 檔案路徑 /// public string FilePath { set { _filepath = value; } get { return _filepath; } } /// /// 檔案大小 /// public int? FileSize { set { _filesize = value; } get { return _filesize; } } /// /// 檔案內容 /// public byte[] FileContent { set { _filecontent = value; } get { return _filecontent; } } /// /// 檔案類別 /// public string FileType { set { _filetype = value; } get { return _filetype; } } /// /// 檔案類別名稱 /// public string FileTypeName { set; get; } /// /// 對內公開Y:對內公開N:對內不公開 /// public string IsProtected { set { _isprotected = value; } get { return _isprotected; } } /// /// 對外公開Y:對外公開N:對外不公開 /// public string IsPublic { set { _ispublic = value; } get { return _ispublic; } } /// /// 備註 /// public string Memo { set { _memo = value; } get { return _memo; } } /// /// 建立人員帳號 /// public string CreateUser { set { _createuser = value; } get { return _createuser; } } /// /// 建立日期 /// public DateTime CreateDate { set { _createdate = value; } get { return _createdate; } } /// /// 修改人員帳號 /// public string ModifyUser { set { _modifyuser = value; } get { return _modifyuser; } } /// /// 修改日期 /// public DateTime ModifyDate { set { _modifydate = value; } get { return _modifydate; } } #endregion Model private List _tb_ava_sys_attachmentss; /// /// 子类 /// public List TB_SYS_Attachmentss { set { _tb_ava_sys_attachmentss = value; } get { return _tb_ava_sys_attachmentss; } } } }