76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
[Serializable]
|
|
|
|
public partial class ExamGroupMaintainModel
|
|
{
|
|
public ExamGroupMaintainModel() { }
|
|
private int Id;
|
|
private string UpLevel;
|
|
private string TeamName;
|
|
private string IsReview;
|
|
private string Weight;
|
|
private string IsCollect;
|
|
private string Status;
|
|
private string Creator;
|
|
private string CreateTime;
|
|
|
|
|
|
public int id
|
|
{
|
|
set { Id = value; }
|
|
get { return Id; }
|
|
}
|
|
public string up_level
|
|
{
|
|
set { UpLevel = value; }
|
|
get { return UpLevel; }
|
|
}
|
|
public string team_name
|
|
{
|
|
set { TeamName = value; }
|
|
get { return TeamName; }
|
|
}
|
|
public string is_review
|
|
{
|
|
set { IsReview = value; }
|
|
get { return IsReview; }
|
|
}
|
|
public string weight
|
|
{
|
|
set { Weight = value; }
|
|
get { return Weight; }
|
|
}
|
|
public string is_collect
|
|
{
|
|
set { IsCollect = value; }
|
|
get { return IsCollect; }
|
|
}
|
|
public string status
|
|
{
|
|
set { Status = value; }
|
|
get { return Status; }
|
|
}
|
|
public string creator
|
|
{
|
|
set { Creator = value; }
|
|
get { return Creator; }
|
|
}
|
|
public string create_time
|
|
{
|
|
set { CreateTime = value; }
|
|
get { return CreateTime; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 实际使用 次数
|
|
/// </summary>
|
|
public int GroupCount{ set; get; }
|
|
}
|
|
}
|