using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Library.Entity { /// /// 信号文件查找类型 /// public enum SigFileFindType { /// /// 数据库查找 /// ByDB, /// /// 文件系统查找 /// ByFS } }