ZrAdminNetCore/ZR.Service/IService/ISysPostService.cs
2021-08-23 16:57:25 +08:00

14 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ZR.Model.System;
namespace ZR.Service.IService
{
public interface ISysPostService: IBaseService<SysPost>
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
}
}