178 lines
3.6 KiB
C#
178 lines
3.6 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* pro_edition.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: pro_edition
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2022/4/1 13:47:52 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataService.Model
|
|
{
|
|
/// <summary>
|
|
/// pro_edition:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class pro_edition
|
|
{
|
|
public pro_edition()
|
|
{}
|
|
#region Model
|
|
private string _edition_id;
|
|
private string _version_number;
|
|
private string _type;
|
|
private int? _first;
|
|
private int? _second;
|
|
private int? _third;
|
|
private string _url;
|
|
private string _sync_service_version;
|
|
private string _interface_version;
|
|
private string _database_version;
|
|
private DateTime? _create_time;
|
|
private string _remark1;
|
|
private string _remark2;
|
|
private string _remark3;
|
|
private string _remark4;
|
|
private string _remark5;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string edition_id
|
|
{
|
|
set{ _edition_id=value;}
|
|
get{return _edition_id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string version_number
|
|
{
|
|
set{ _version_number=value;}
|
|
get{return _version_number;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string type
|
|
{
|
|
set{ _type=value;}
|
|
get{return _type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? first
|
|
{
|
|
set{ _first=value;}
|
|
get{return _first;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? second
|
|
{
|
|
set{ _second=value;}
|
|
get{return _second;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? third
|
|
{
|
|
set{ _third=value;}
|
|
get{return _third;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string url
|
|
{
|
|
set{ _url=value;}
|
|
get{return _url;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string sync_service_version
|
|
{
|
|
set{ _sync_service_version=value;}
|
|
get{return _sync_service_version;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string interface_version
|
|
{
|
|
set{ _interface_version=value;}
|
|
get{return _interface_version;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string database_version
|
|
{
|
|
set{ _database_version=value;}
|
|
get{return _database_version;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? create_time
|
|
{
|
|
set{ _create_time=value;}
|
|
get{return _create_time;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark1
|
|
{
|
|
set{ _remark1=value;}
|
|
get{return _remark1;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark2
|
|
{
|
|
set{ _remark2=value;}
|
|
get{return _remark2;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark3
|
|
{
|
|
set{ _remark3=value;}
|
|
get{return _remark3;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark4
|
|
{
|
|
set{ _remark4=value;}
|
|
get{return _remark4;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark5
|
|
{
|
|
set{ _remark5=value;}
|
|
get{return _remark5;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|