Commit 4916c6bf authored by 罗超's avatar 罗超

新增RB_Stage阶段类

parent 45922ee6
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.System
{
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Stage
{
/// <summary>
/// 主键
/// </summary>
public int Id { get; set; }
/// <summary>
/// 阶段名称
/// </summary>
public string StageName { get; set; }
/// <summary>
/// 阶段序号
/// </summary>
public int No { get; set; }
public int CreateBy { get; set; }
public int CreateTime { get; set; }
public int UpdateBy { get; set; }
public int UpdateTime { get; set; }
}
}
using Edu.Model.Entity.System;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.System
{
public class RB_Stage_ViewModel:RB_Stage
{
/// <summary>
/// 子类数量
/// </summary>
public int ChildCount { get; set; }
}
}
using Edu.Model.Entity.System;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Repository.System
{
public class RB_StageRepository:BaseRepository<RB_Stage>
{
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment