using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Ips.Library.Entity { /// /// 采集卡类型 /// public enum AdCardType { /// /// 华力采集 /// [Description("华力采集")] HLCarder = 0, /// /// 前锋采集 /// [Description("前锋采集")] QFCarder = 1 } }