#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md ----------------------------------------------------------------*/ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- Copyright (C) 2019 Senparc 文件名:MenuMatchRule.cs 文件功能描述:个性化菜单匹配规则 创建标识:Senparc - 20151222 修改标识:lishewen - 20150628 修改描述:v13.8.8 添加tag_id和language匹配项 ----------------------------------------------------------------*/ using Senparc.CO2NET.Extensions; namespace Senparc.Weixin.MP.Entities.Menu { /// /// 个性化菜单匹配规则 /// matchrule共六个字段,均可为空,但不能全部为空,至少要有一个匹配信息是不为空的。 country、province、city组成地区信息,将按照country、province、city的顺序进行验证,要符合地区信息表的内容。地区信息从大到小验证,小的可以不填,即若填写了省份信息,则国家信息也必填并且匹配,城市信息可以不填。 例如 “中国 广东省 广州市”、“中国 广东省”都是合法的地域信息,而“中国 广州市”则不合法,因为填写了城市信息但没有填写省份信息。 地区信息表请点击下载。 /// public class MenuMatchRule { /// /// 用户标签的id,可通过用户标签管理接口获取 /// public string tag_id { get; set; } /// /// 用户分组id,可通过用户分组管理接口获取 /// public string group_id { get; set; } /// /// 性别:男(1)女(2),不填则不做匹配 /// public string sex { get; set; } /// /// 国家信息,是用户在微信中设置的地区,具体请参考地区信息表 /// public string country { get; set; } /// /// 省份信息,是用户在微信中设置的地区,具体请参考地区信息表 /// public string province { get; set; } /// /// 城市信息,是用户在微信中设置的地区,具体请参考地区信息表 /// public string city { get; set; } /// /// 客户端版本,当前只具体到系统型号:IOS(1), Android(2),Others(3),不填则不做匹配 /// public string client_platform_type { get; set; } /// /// 语言信息,是用户在微信中设置的语言,具体请参考语言表: ///1、简体中文 "zh_CN" 2、繁体中文TW "zh_TW" 3、繁体中文HK "zh_HK" 4、英文 "en" 5、印尼 "id" ///6、马来 "ms" 7、西班牙 "es" 8、韩国 "ko" 9、意大利 "it" 10、日本 "ja" ///11、波兰 "pl" 12、葡萄牙 "pt" 13、俄国 "ru" 14、泰文 "th" 15、越南 "vi" ///16、阿拉伯语 "ar" 17、北印度 "hi" 18、希伯来 "he" 19、土耳其 "tr" 20、德语 "de" ///21、法语 "fr" /// public string language { get; set; } /// /// 判断是否所有属性都为null /// /// public bool CheckAllNull() { return group_id.IsNullOrWhiteSpace() && sex.IsNullOrWhiteSpace() && country.IsNullOrWhiteSpace() && province.IsNullOrWhiteSpace() && city.IsNullOrWhiteSpace() && client_platform_type.IsNullOrWhiteSpace() && tag_id.IsNullOrWhiteSpace() && language.IsNullOrWhiteSpace(); } } }