CompetitionAPI_dotnet/Competition.Mysql/Model/pow_config.cs

205 lines
4.2 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* pow_config.cs
*
* 功 能: N/A
* 类 名: pow_config
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2024/3/28 15:21:15 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司              │
*└──────────────────────────────────┘
*/
using System;
namespace Competition.Mysql.Model
{
/// <summary>
/// pow_config:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class pow_config
{
public pow_config()
{}
#region Model
private string _configid;
private string _limitip;
private string _linetotalscore;
private string _linemultiplescore;
private string _linemomentscore;
private string _totaldefectscore;
private string _timescore;
private string _timedecreasingscore;
private string _timecount;
private string _selectareascore;
private string _electricityscore;
private string _climbrodscore;
private string _enclosurescore;
private string _enclosurefaultscore;
private string _remark1;
private string _remark2;
private string _remark3;
private string _remark4;
private string _remark5;
/// <summary>
///
/// </summary>
public string ConfigId
{
set{ _configid=value;}
get{return _configid;}
}
/// <summary>
///
/// </summary>
public string LimitIp
{
set{ _limitip=value;}
get{return _limitip;}
}
/// <summary>
///
/// </summary>
public string LineTotalScore
{
set{ _linetotalscore=value;}
get{return _linetotalscore;}
}
/// <summary>
///
/// </summary>
public string LineMultipleScore
{
set{ _linemultiplescore=value;}
get{return _linemultiplescore;}
}
/// <summary>
///
/// </summary>
public string LineMomentScore
{
set{ _linemomentscore=value;}
get{return _linemomentscore;}
}
/// <summary>
///
/// </summary>
public string TotalDefectScore
{
set{ _totaldefectscore=value;}
get{return _totaldefectscore;}
}
/// <summary>
///
/// </summary>
public string TimeScore
{
set{ _timescore=value;}
get{return _timescore;}
}
/// <summary>
///
/// </summary>
public string TimeDecreasingScore
{
set{ _timedecreasingscore=value;}
get{return _timedecreasingscore;}
}
/// <summary>
///
/// </summary>
public string TimeCount
{
set{ _timecount=value;}
get{return _timecount;}
}
/// <summary>
///
/// </summary>
public string SelectAreaScore
{
set{ _selectareascore=value;}
get{return _selectareascore;}
}
/// <summary>
///
/// </summary>
public string ElectricityScore
{
set{ _electricityscore=value;}
get{return _electricityscore;}
}
/// <summary>
///
/// </summary>
public string ClimbrodScore
{
set{ _climbrodscore=value;}
get{return _climbrodscore;}
}
/// <summary>
///
/// </summary>
public string EnclosureScore
{
set{ _enclosurescore=value;}
get{return _enclosurescore;}
}
/// <summary>
///
/// </summary>
public string EnclosureFaultScore
{
set{ _enclosurefaultscore=value;}
get{return _enclosurefaultscore;}
}
/// <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
}
}