using System; using System.Collections.Generic; namespace WebAPIServer.Models; public partial class TblUtsManageModule { public int Id { get; set; } /// /// 功能描述 /// public string? Operation { get; set; } /// /// 控制器 /// public string? Controller { get; set; } /// /// 方法名 /// public string? Method { get; set; } /// /// 1代表已录入 /// public ulong? Exist { get; set; } /// /// 功能备注 /// public string? Remark { get; set; } }