using System;
using VT.FW.DB;
namespace Edu.Model.Entity.System
{
///
/// 岗位角色表实体类
///
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Post_Role
{
///
/// 主键编号
///
public int Id { get; set; }
///
/// 岗位编号
///
public int PostId { get; set; }
///
/// 角色编号
///
public int RoleId { get; set; }
}
}