using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class RoleFunMapping
{
///
/// 主键ID
///
public int Id { get; set; }
///
/// 角色ID
///
public int? RoleId { get; set; }
///
/// 设备功能ID
///
public int? DeviceFunId { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 是否删除标记
///
public bool? IsDelete { get; set; }
}