ntk-cms-api 1.2.117 → 1.2.119

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.
@@ -3,3 +3,4 @@ export * from './estateModuleSaleAccountAgencyAdsPaymentDtoModel';
3
3
  export * from './estateModuleSalePropertyAdsCalculateDtoModel';
4
4
  export * from './estateModuleSalePropertyAdsPaymentDtoModel';
5
5
  export * from './estatePriceInquiryDtoModel';
6
+ export * from './estatePropertySerachDtoModel';
@@ -0,0 +1,19 @@
1
+ import { FilterModel } from "../../entity/base/filterModel";
2
+ export declare class EstatePropertySerachDtoModel extends FilterModel {
3
+ linkPropertyTypeLanduseId: string;
4
+ linkPropertyTypeUsageId: string;
5
+ linkContractTypeId: string;
6
+ createdYaer?: number;
7
+ partition?: number;
8
+ area?: number;
9
+ salePriceMin?: number;
10
+ salePriceMax?: number;
11
+ rentPriceMin?: number;
12
+ rentPriceMax?: number;
13
+ depositPriceMin?: number;
14
+ depositPriceMax?: number;
15
+ periodPriceMin?: number;
16
+ periodPriceMax?: number;
17
+ linkLocationIds: number[];
18
+ linkCoreCurrencyId: number;
19
+ }
@@ -8,6 +8,7 @@ import { EstatePropertyTypeLanduseModel } from './estatePropertyTypeLanduseModel
8
8
  import { EstatePropertyTypeUsageModel } from './estatePropertyTypeUsageModel';
9
9
  export declare class EstatePropertyModel extends BaseModuleEntity<string> {
10
10
  title: string;
11
+ priority?: number;
11
12
  caseCode: string;
12
13
  mainAdminRecordStatus: EnumRecordStatus;
13
14
  createdYaer?: number;
@@ -5,6 +5,8 @@ import { Observable } from 'rxjs';
5
5
  import { FilterModel } from '../../models/entity/base/filterModel';
6
6
  import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
7
7
  import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
8
+ import { EstatePropertySerachDtoModel } from '../../models/dto/estate/estatePropertySerachDtoModel';
9
+ import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
8
10
  export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string> {
9
11
  getModuleControllerUrl(): string;
10
12
  ServiceActionSendSmsToCustomerOrder(Id: string): Observable<ErrorExceptionResultBase>;
@@ -13,6 +15,8 @@ export declare class EstatePropertyService extends ApiCmsServerBase<EstateProper
13
15
  ServiceFavoriteList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
14
16
  ServiceReportAbuseAdd(model: CoreModuleReportAbuseDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
15
17
  ServiceReportAbuseList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
18
+ ServiceGetAllWithFilter(model: EstatePropertySerachDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
16
19
  ServiceGetAllWithBillboardId(BillboardId: string, model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
17
20
  ServiceGetAllWithCustomerOrderId(CustomerOrderId: string, model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
21
+ ServiceGetAllWithCustomerOrderIdExportFile(CustomerOrderId: string, model: FilterModel): Observable<ErrorExceptionResultExportFile>;
18
22
  }