2025-10-21 13:38:23 +08:00

12 lines
280 B
C#

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