using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMFrameWork.ServiceLibrary { /// /// 服务定义 /// public class ServiceDefinition { /// /// 服务名 /// public string ServiceName { get; set; } /// /// 对应逻辑类全名 /// public string FullLogicClassName { get; set; } /// /// 程序文件 /// public string AssemblyFile { get; set; } /// /// 是否验证凭据 /// public bool IsCredential { get; set; } /// /// 方法列表 /// public List Functions { get; set; } /// /// 锁定函数列表 /// public Dictionary NeedLockFunctions { get; set; } } }