14 lines
306 B
C#
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);
|
|
}
|
|
}
|