CompetitionAPI_dotnet/Competition.Mysql/Model/pow_study_record.cs

160 lines
3.2 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* pow_study_record.cs
*
* 功 能: N/A
* 类 名: pow_study_record
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2024/5/20 10:53:08 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司              │
*└──────────────────────────────────┘
*/
using System;
namespace Competition.Mysql.Model
{
/// <summary>
/// pow_study_record:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class pow_study_record
{
public pow_study_record()
{}
#region Model
private string _recordid;
private string _studyid;
private string _userid;
private string _realname;
private string _schedule;
private DateTime? _studytime;
private string _comment;
private string _reviewerid;
private string _reviewer;
private DateTime? _reviewertime;
private DateTime? _createtime;
private string _r1;
private string _r2;
private string _r3;
/// <summary>
///
/// </summary>
public string RecordId
{
set{ _recordid=value;}
get{return _recordid;}
}
/// <summary>
///
/// </summary>
public string StudyId
{
set{ _studyid=value;}
get{return _studyid;}
}
/// <summary>
///
/// </summary>
public string UserId
{
set{ _userid=value;}
get{return _userid;}
}
/// <summary>
///
/// </summary>
public string RealName
{
set{ _realname=value;}
get{return _realname;}
}
/// <summary>
///
/// </summary>
public string Schedule
{
set{ _schedule=value;}
get{return _schedule;}
}
/// <summary>
///
/// </summary>
public DateTime? StudyTime
{
set{ _studytime=value;}
get{return _studytime;}
}
/// <summary>
///
/// </summary>
public string Comment
{
set{ _comment=value;}
get{return _comment;}
}
/// <summary>
///
/// </summary>
public string ReviewerId
{
set{ _reviewerid=value;}
get{return _reviewerid;}
}
/// <summary>
///
/// </summary>
public string Reviewer
{
set{ _reviewer=value;}
get{return _reviewer;}
}
/// <summary>
///
/// </summary>
public DateTime? ReviewerTime
{
set{ _reviewertime=value;}
get{return _reviewertime;}
}
/// <summary>
///
/// </summary>
public DateTime? CreateTime
{
set{ _createtime=value;}
get{return _createtime;}
}
/// <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
}
}