16 lines
278 B
C#
16 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.Dto.System;
|
|
using ZR.Model.System;
|
|
|
|
namespace ZR.Service.IService
|
|
{
|
|
public interface IArticleService : IBaseService<Article>
|
|
{
|
|
|
|
}
|
|
}
|