using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 详情
///
public class GetApiGroupQueryVo
{
///
/// ID
///
public int id { get; set; }
///
/// 服务ID
///
public int serviceId { get; set; }
///
/// 分组名称
///
public string groupName { get; set; }
///
/// 分组标题
///
public string groupTitle { get; set; }
///
/// 应用端ID
///
public int appId { get; set; }
///
/// 包名
///
public string packageName { get; set; }
///
/// 控制器文件根目录
///
public string? controllerRootPath { get; set; }
}
}