115 lines
2.5 KiB
C#
115 lines
2.5 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* resource.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: resource
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2022/5/24 19:44:07 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataModel.Model
|
|
{
|
|
/// <summary>
|
|
/// resource:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class resource
|
|
{
|
|
public resource()
|
|
{}
|
|
#region Model
|
|
private string _id;
|
|
private string _name;
|
|
private string _resourcetype;
|
|
private string _fileformat;
|
|
private decimal? _filesize;
|
|
private string _virtualpath;
|
|
private string _memo;
|
|
private DateTime _updatetime = DateTime.Now;
|
|
private bool _isdeleted;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
set{ _name=value;}
|
|
get{return _name;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ResourceType
|
|
{
|
|
set{ _resourcetype=value;}
|
|
get{return _resourcetype;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string FileFormat
|
|
{
|
|
set{ _fileformat=value;}
|
|
get{return _fileformat;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal? FileSize
|
|
{
|
|
set{ _filesize=value;}
|
|
get{return _filesize;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string VirtualPath
|
|
{
|
|
set{ _virtualpath=value;}
|
|
get{return _virtualpath;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Memo
|
|
{
|
|
set{ _memo=value;}
|
|
get{return _memo;}
|
|
}
|
|
/// <summary>
|
|
/// DEFAULT_GENERATED on update CURRENT_TIMESTAMP
|
|
/// </summary>
|
|
public DateTime UpdateTime
|
|
{
|
|
set{ _updatetime=value;}
|
|
get{return _updatetime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public bool IsDeleted
|
|
{
|
|
set{ _isdeleted=value;}
|
|
get{return _isdeleted;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|