2024-08-08 22:23:36 +08:00
|
|
|
|
using Bunny.Dao.Models.System;
|
|
|
|
|
|
|
|
|
|
namespace Bunny.Service.IService.Service;
|
|
|
|
|
|
|
|
|
|
public class BaseService : IBaseService
|
|
|
|
|
{
|
2024-08-08 22:51:21 +08:00
|
|
|
|
public string TestIndex()
|
2024-08-08 22:23:36 +08:00
|
|
|
|
{
|
|
|
|
|
const string result = "bunny-template 实现自动注入成功";
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|