17 lines
395 B
C#
17 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ZR.Model.System;
|
|
using ZR.Repository;
|
|
using ZR.ServiceCore.Model;
|
|
|
|
namespace ZR.Service.System.IService
|
|
{
|
|
public interface ISysPostService : IBaseService<SysPost>
|
|
{
|
|
string CheckPostNameUnique(SysPost sysPost);
|
|
string CheckPostCodeUnique(SysPost sysPost);
|
|
List<SysPost> GetAll();
|
|
}
|
|
}
|