/// <summary>
        /// 添加客服
        /// </summary>
        /// <param name="model">客服信息</param>
        public static long AddPlateCustomerService(CustomerService model)
        {
            var cs = model.Map <CustomerServiceInfo>();

            _customerService.AddPlateCustomerService(cs);
            model.Id = cs.Id;
            return(cs.Id);
        }