Files
kunshan-bzfm-mes-backend/ZR.ServiceCore/Services/IService/ISysPostService.cs

12 lines
276 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
using ZR.Model.System;
namespace ZR.ServiceCore.Services
{
public interface ISysPostService : IBaseService<SysPost>
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
List<SysPost> GetAll();
}
}