Files
shgx_tz_mes_backend_sync/ZR.Service/System/IService/ISysPostService.cs

16 lines
367 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using ZR.Model.System;
2021-09-27 08:06:09 +08:00
using ZR.Repository;
2021-08-23 16:57:25 +08:00
2021-09-16 19:35:17 +08:00
namespace ZR.Service.System.IService
2021-08-23 16:57:25 +08:00
{
2021-09-27 16:07:55 +08:00
public interface ISysPostService : IBaseService<SysPost>
2021-08-23 16:57:25 +08:00
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
2022-03-19 08:04:08 +08:00
List<SysPost> GetAll();
2021-08-23 16:57:25 +08:00
}
}