初始化

This commit is contained in:
2025-12-11 14:04:39 +08:00
commit 1f65bbf628
2676 changed files with 838983 additions and 0 deletions

View File

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