using System;
using System.Collections.Generic;
using System.Text;
using Edu.Common.Enum.Sale;
using Edu.Model.Entity.WeChat;

namespace Edu.Model.ViewModel.WeChat
{
    /// <summary>
    /// 企业微信客户标签扩展类
    /// </summary>
    public class RB_WeChat_Lable_ViewModel : RB_WeChat_Lable
    {
        /// <summary>
        /// 查询类型  1分组   2标签
        /// </summary>
        public int SelectType { get; set; }

        /// <summary>
        /// 分组ids
        /// </summary>
        public string ParentIds { get; set; }

        /// <summary>
        /// 标签ids
        /// </summary>
        public string LableIds { get; set; }

        /// <summary>
        /// 标签列表
        /// </summary>
        public List<RB_WeChat_Lable_ViewModel> ChildList { get; set; }
    }
}