/** 版本信息模板在安装目录下,可自行修改。 * 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 { /// /// pow_study_record:实体类(属性说明自动提取数据库字段的描述信息) /// [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; /// /// /// public string RecordId { set{ _recordid=value;} get{return _recordid;} } /// /// /// public string StudyId { set{ _studyid=value;} get{return _studyid;} } /// /// /// public string UserId { set{ _userid=value;} get{return _userid;} } /// /// /// public string RealName { set{ _realname=value;} get{return _realname;} } /// /// /// public string Schedule { set{ _schedule=value;} get{return _schedule;} } /// /// /// public DateTime? StudyTime { set{ _studytime=value;} get{return _studytime;} } /// /// /// public string Comment { set{ _comment=value;} get{return _comment;} } /// /// /// public string ReviewerId { set{ _reviewerid=value;} get{return _reviewerid;} } /// /// /// public string Reviewer { set{ _reviewer=value;} get{return _reviewer;} } /// /// /// public DateTime? ReviewerTime { set{ _reviewertime=value;} get{return _reviewertime;} } /// /// /// public DateTime? CreateTime { set{ _createtime=value;} get{return _createtime;} } /// /// /// public string R1 { set{ _r1=value;} get{return _r1;} } /// /// /// public string R2 { set{ _r2=value;} get{return _r2;} } /// /// /// public string R3 { set{ _r3=value;} get{return _r3;} } #endregion Model } }