ntk-cms-api 1.0.355 → 1.0.356

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9646,6 +9646,24 @@
9646
9646
  return _this.errorExceptionResultCheck(ret);
9647
9647
  }));
9648
9648
  };
9649
+ EstatePropertyService.prototype.ServiceGetAllWithBillbord = function (billbordId, model) {
9650
+ var _this = this;
9651
+ if (model == null) {
9652
+ model = new FilterModel();
9653
+ }
9654
+ if (!billbordId || billbordId.length === 0) {
9655
+ billbordId = '00';
9656
+ }
9657
+ return this.http
9658
+ .post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetAllWithBillbord/' + billbordId, model, {
9659
+ headers: this.getHeaders(),
9660
+ })
9661
+ .pipe(operators.retry(this.configApiRetry),
9662
+ // catchError(this.handleError)
9663
+ operators.map(function (ret) {
9664
+ return _this.errorExceptionResultCheck(ret);
9665
+ }));
9666
+ };
9649
9667
  return EstatePropertyService;
9650
9668
  }(ApiCmsServerBase));
9651
9669
  EstatePropertyService.decorators = [