169 lines
3.4 KiB
C#
169 lines
3.4 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* admin_config.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: admin_config
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2021/3/30 8:46:16 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataService.Model
|
|
{
|
|
/// <summary>
|
|
/// admin_config:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class admin_config
|
|
{
|
|
public admin_config()
|
|
{}
|
|
#region Model
|
|
private string _config_id;
|
|
private string _system_name;
|
|
private int _is_close=0;
|
|
private DateTime? _start_time;
|
|
private DateTime? _end_time;
|
|
private string _title;
|
|
private string _logo;
|
|
private int _is_use=0;
|
|
private int _is_examine=0;
|
|
private int _examine_type=0;
|
|
private DateTime? _examine_change_time;
|
|
private DateTime? _create_time;
|
|
private string _r1;
|
|
private string _r2;
|
|
private string _r3;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string config_id
|
|
{
|
|
set{ _config_id=value;}
|
|
get{return _config_id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string system_name
|
|
{
|
|
set{ _system_name=value;}
|
|
get{return _system_name;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int is_close
|
|
{
|
|
set{ _is_close=value;}
|
|
get{return _is_close;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? start_time
|
|
{
|
|
set{ _start_time=value;}
|
|
get{return _start_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? end_time
|
|
{
|
|
set{ _end_time=value;}
|
|
get{return _end_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string title
|
|
{
|
|
set{ _title=value;}
|
|
get{return _title;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string logo
|
|
{
|
|
set{ _logo=value;}
|
|
get{return _logo;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int is_use
|
|
{
|
|
set{ _is_use=value;}
|
|
get{return _is_use;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int is_examine
|
|
{
|
|
set{ _is_examine=value;}
|
|
get{return _is_examine;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int examine_type
|
|
{
|
|
set{ _examine_type=value;}
|
|
get{return _examine_type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? examine_change_time
|
|
{
|
|
set{ _examine_change_time=value;}
|
|
get{return _examine_change_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? create_time
|
|
{
|
|
set{ _create_time=value;}
|
|
get{return _create_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r1
|
|
{
|
|
set{ _r1=value;}
|
|
get{return _r1;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r2
|
|
{
|
|
set{ _r2=value;}
|
|
get{return _r2;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string r3
|
|
{
|
|
set{ _r3=value;}
|
|
get{return _r3;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|