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

12 lines
280 B
C#
Raw Normal View History

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