20 lines
360 B
C#
20 lines
360 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace WebAPIServer.Models;
|
|||
|
|
|
|||
|
|
public partial class TblUtsManageAuthmanage
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 部分权限
|
|||
|
|
/// </summary>
|
|||
|
|
public string? ModuleId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 描述
|
|||
|
|
/// </summary>
|
|||
|
|
public string? Describe { get; set; }
|
|||
|
|
}
|