using ZR.Model.System; using ZR.ServiceCore.Model; namespace ZR.Service.IService { /// /// Hello接口 /// public interface IHelloService : IBaseService { /// /// /// /// /// string SayHello(string name); } }