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