shgx_tz_mom/ZR.Service/System/IService/ISysPostService.cs
2021-09-16 19:35:17 +08:00

14 lines
313 B
C#

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