using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMFrameWork.ServiceLibrary { /// /// 服务方法定义 /// public class ServiceFunctionDefinition { /// /// 请求方法名 /// public string RequestFunctionName { get; set; } /// /// 类方法名 /// public string ClassFunctionName { get; set; } } }