diff --git a/dist/Customer/Customer.d.ts b/dist/Customer/Customer.d.ts index 48714f1..2e9ad3f 100644 --- a/dist/Customer/Customer.d.ts +++ b/dist/Customer/Customer.d.ts @@ -11,7 +11,7 @@ export default class Customer extends Resource { smsCode?: string | null; smsCodeExpire?: Date | null; passwordCode?: string | null; - passwordCodeExpire?: Date | null; + passwordcodeExpire?: Date | null; password?: string | null; } export declare enum ECustomerStatus { diff --git a/dist/Customer/Customer.js b/dist/Customer/Customer.js index 8c971ab..d9f9602 100644 --- a/dist/Customer/Customer.js +++ b/dist/Customer/Customer.js @@ -72,7 +72,7 @@ __decorate([ __decorate([ (0, class_transformer_1.Exclude)(), __metadata("design:type", Object) -], Customer.prototype, "passwordCodeExpire", void 0); +], Customer.prototype, "passwordcodeExpire", void 0); __decorate([ (0, class_transformer_1.Exclude)(), __metadata("design:type", Object) diff --git a/src/Customer/Customer.ts b/src/Customer/Customer.ts index 7604276..da0136b 100644 --- a/src/Customer/Customer.ts +++ b/src/Customer/Customer.ts @@ -40,7 +40,7 @@ export default class Customer extends Resource { public passwordCode?: string | null; @Exclude() - public passwordCodeExpire?: Date | null; + public passwordcodeExpire?: Date | null; @Exclude() public password?: string | null;