using System;
using System.Collections.Generic;
namespace WebAPIServer.Models;
///
/// 用户厂家权限
///
public partial class TblUtsManageUserauthOperation
{
///
/// 索引,无作用
///
public int Id { get; set; }
///
/// 用户索引
///
public int UserId { get; set; }
///
/// 数据库索引
///
public int DatabaseId { get; set; }
///
/// 数据库名称
///
public string? DatabaseName { get; set; }
///
/// 拥有完整权限功能索引,用逗号分隔
///
public string? FullAccess { get; set; }
///
/// 拥有读写权限功能索引,用逗号分隔
///
public string? ReadWriteAccess { get; set; }
///
/// 拥有只读权限功能索引,用逗号分隔
///
public string? ReadOnlyAccess { get; set; }
///
/// 拥有机型权限索引,用逗号分隔
///
public string? ReadProject { get; set; }
///
/// 拥有管理权限索引,用逗号分隔
///
public string? ManagerAccess { get; set; }
}