12 lines
276 B
C#
12 lines
276 B
C#
using ZR.Model.System;
|
|
|
|
namespace ZR.ServiceCore.Services
|
|
{
|
|
public interface ISysPostService : IBaseService<SysPost>
|
|
{
|
|
string CheckPostNameUnique(SysPost sysPost);
|
|
string CheckPostCodeUnique(SysPost sysPost);
|
|
List<SysPost> GetAll();
|
|
}
|
|
}
|