2021-09-27 08:06:09 +08:00
|
|
|
using System;
|
|
|
|
|
using ZR.Model.Models;
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.Business
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 代码生成演示service接口
|
|
|
|
|
///
|
2021-09-27 17:38:09 +08:00
|
|
|
/// @author zr
|
|
|
|
|
/// @date 2021-09-27
|
2021-09-27 08:06:09 +08:00
|
|
|
/// </summary>
|
|
|
|
|
public interface IGendemoService: IBaseService<Gendemo>
|
|
|
|
|
{
|
2021-10-29 13:23:22 +08:00
|
|
|
void Test();
|
2021-09-27 08:06:09 +08:00
|
|
|
}
|
|
|
|
|
}
|