CompetitionAPI_dotnet/Competition.Mysql/Model/pow_achievement_details.cs

160 lines
3.3 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* pow_achievement_details.cs
*
* 功 能: N/A
* 类 名: pow_achievement_details
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2022/8/22 11:06:24 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司              │
*└──────────────────────────────────┘
*/
using System;
namespace Competition.Mysql.Model
{
/// <summary>
/// pow_achievement_details:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class pow_achievement_details
{
public pow_achievement_details()
{}
#region Model
private string _detailsid;
private string _achievementid;
private string _itemname;
private decimal? _itemizedscore;
private DateTime? _createtime;
private string _type;
private decimal? _totalscore;
private string _faultdesc;
private string _scoretype;
private string _remark1;
private string _remark2;
private string _remark3;
private string _remark4;
private string _remark5;
/// <summary>
///
/// </summary>
public string DetailsId
{
set{ _detailsid=value;}
get{return _detailsid;}
}
/// <summary>
///
/// </summary>
public string AchievementId
{
set{ _achievementid=value;}
get{return _achievementid;}
}
/// <summary>
///
/// </summary>
public string ItemName
{
set{ _itemname=value;}
get{return _itemname;}
}
/// <summary>
///
/// </summary>
public decimal? ItemizedScore
{
set{ _itemizedscore=value;}
get{return _itemizedscore;}
}
/// <summary>
///
/// </summary>
public DateTime? CreateTime
{
set{ _createtime=value;}
get{return _createtime;}
}
/// <summary>
///
/// </summary>
public string Type
{
set{ _type=value;}
get{return _type;}
}
/// <summary>
///
/// </summary>
public decimal? TotalScore
{
set{ _totalscore=value;}
get{return _totalscore;}
}
/// <summary>
///
/// </summary>
public string FaultDesc
{
set{ _faultdesc=value;}
get{return _faultdesc;}
}
/// <summary>
///
/// </summary>
public string ScoreType
{
set{ _scoretype=value;}
get{return _scoretype;}
}
/// <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
}
}