using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 客户要展示特定信息配置 /// public class BusinessShowConst { /// /// 要展示手机号的客户ID列表 /// public static List PhoneShowIds = new List { 232, 2608, 5970, 2607 }; /// /// 要展示体质的客户ID列表 /// public static List BodyTypeShowIds = new List { 14 }; } }