ISysPostService.cs 276 B

1234567891011
  1. using ZR.Model.System;
  2. namespace ZR.ServiceCore.Services
  3. {
  4. public interface ISysPostService : IBaseService<SysPost>
  5. {
  6. string CheckPostNameUnique(SysPost sysPost);
  7. string CheckPostCodeUnique(SysPost sysPost);
  8. List<SysPost> GetAll();
  9. }
  10. }