2024-09-23 09:14:22 +08:00

12 lines
280 B
C#

using DOAN.Model.System;
namespace DOAN.ServiceCore.Services
{
public interface ISysPostService : IBaseService<SysPost>
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
List<SysPost> GetAll();
}
}