13 lines
208 B
C#
13 lines
208 B
C#
using System;
|
|
using ZR.Model.Models;
|
|
|
|
namespace ZR.Service.Business
|
|
{
|
|
/// <summary>
|
|
/// 定义服务接口
|
|
/// </summary>
|
|
public interface IGendemoService: IBaseService<Gendemo>
|
|
{
|
|
}
|
|
}
|