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

14 lines
306 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;
namespace ZR.Service.IService
{
public interface ISysPostService: IBaseService<SysPost>
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
}
}