You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

167 lines
4.5 KiB

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