public void TestAddStarRatingStore()
 {
     using (var client = new ActivityClient())
     {
         var model = new AddStarRatingStoreRequest()
         {
             Phone                 = "1608938839",
             UserName              = "******",
             StoreName             = "美容店",
             Duty                  = "店长",
             ProvinceID            = 4,
             CityID                = 4,
             DistrictID            = 5,
             ProvinceName          = "上海",
             CityName              = "上海",
             DistrictName          = "李子园",
             StoreAddress          = "荣和",
             StoreArea             = 222.34M,
             StoreNum              = 4,
             WorkPositionNum       = 4,
             MaintainQualification = "二类",
             Storefront            = "美容",
             //StorefrontDesc="",
             StoreLocation = "小区里",
             IsAgree       = true
         };
         var result = client.AddStarRatingStore(model);
         Assert.IsNotNull(result.Result);
     }
 }