36 lines
845 B
C#
36 lines
845 B
C#
using System.Data;
|
|
using JNPF.Common.Core.Manager;
|
|
using JNPF.Common.Filter;
|
|
using JNPF.Common.Security;
|
|
using JNPF.DependencyInjection;
|
|
using JNPF.DynamicApiController;
|
|
using JNPF.Extras.Thirdparty.JSEngine;
|
|
using JNPF.JsonSerialization;
|
|
using JNPF.Logging.Attributes;
|
|
using JNPF.Systems.Entitys.Permission;
|
|
using JNPF.Systems.Entitys.System;
|
|
using JNPF.TaskScheduler;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Cors;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using SqlSugar;
|
|
|
|
namespace JNPF.Systems.Common;
|
|
|
|
/// <summary>
|
|
/// 测试接口.
|
|
/// </summary>
|
|
[ApiDescriptionSettings(Name = "Test", Order = 900)]
|
|
[Route("api")]
|
|
public class HeartbeatService : IDynamicApiController, ITransient
|
|
{
|
|
[HttpGet("heartbeat")]
|
|
[AllowAnonymous]
|
|
[IgnoreLog]
|
|
public string Heartbeat()
|
|
{
|
|
return DateTime.Now.ToString();
|
|
}
|
|
|
|
}
|