geek-custom-api-core 0.0.72 → 0.0.74
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.
- package/.history/package_20260512160303.json +103 -0
- package/.history/package_20260512165611.json +103 -0
- package/dist/api/app/deposit/deposit.service.d.ts +1 -1
- package/dist/api/app/deposit/deposit.service.js +52 -11
- package/dist/api/app/deposit/deposit.service.js.map +1 -1
- package/dist/api/app/deposit/entity/depositOrderClaimRefund.entity.d.ts +10 -0
- package/dist/api/app/deposit/entity/depositOrderClaimRefund.entity.js +70 -0
- package/dist/api/app/deposit/entity/depositOrderClaimRefund.entity.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.DepositOrderClaimRefund = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const common_entity_1 = require("../../../../common/entity/common.entity");
|
|
16
|
+
const typeorm_1 = require("typeorm");
|
|
17
|
+
let DepositOrderClaimRefund = class DepositOrderClaimRefund extends common_entity_1.CommonEntity {
|
|
18
|
+
};
|
|
19
|
+
exports.DepositOrderClaimRefund = DepositOrderClaimRefund;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)(),
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
(0, swagger_1.ApiProperty)({ description: '주문 번호', required: true }),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], DepositOrderClaimRefund.prototype, "orderSno", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, typeorm_1.Column)(),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
(0, swagger_1.ApiProperty)({ description: '고객사 번호', required: true }),
|
|
30
|
+
__metadata("design:type", Number)
|
|
31
|
+
], DepositOrderClaimRefund.prototype, "partnerSno", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)(),
|
|
34
|
+
(0, class_validator_1.IsNumber)(),
|
|
35
|
+
(0, swagger_1.ApiProperty)({ description: '회원 번호', required: true }),
|
|
36
|
+
__metadata("design:type", Number)
|
|
37
|
+
], DepositOrderClaimRefund.prototype, "memberNo", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, typeorm_1.Column)(),
|
|
40
|
+
(0, class_validator_1.IsNumber)(),
|
|
41
|
+
(0, swagger_1.ApiProperty)({ description: '환불 클레임 번호', required: true }),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], DepositOrderClaimRefund.prototype, "claimNo", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
(0, swagger_1.ApiProperty)({
|
|
49
|
+
description: '클레임 대상 주문 옵션 번호 목록(csv)',
|
|
50
|
+
required: false,
|
|
51
|
+
}),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], DepositOrderClaimRefund.prototype, "orderProductOptionNos", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
56
|
+
(0, class_validator_1.IsNumber)(),
|
|
57
|
+
(0, swagger_1.ApiProperty)({ description: '클레임 기준 예치금 환불 금액', required: true }),
|
|
58
|
+
__metadata("design:type", Number)
|
|
59
|
+
], DepositOrderClaimRefund.prototype, "refundAmount", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
62
|
+
(0, class_validator_1.IsOptional)(),
|
|
63
|
+
(0, class_validator_1.IsDate)(),
|
|
64
|
+
(0, swagger_1.ApiProperty)({ description: '환불 처리 시각', required: false }),
|
|
65
|
+
__metadata("design:type", Date)
|
|
66
|
+
], DepositOrderClaimRefund.prototype, "refundDt", void 0);
|
|
67
|
+
exports.DepositOrderClaimRefund = DepositOrderClaimRefund = __decorate([
|
|
68
|
+
(0, typeorm_1.Entity)('gs_depositOrderClaimRefund')
|
|
69
|
+
], DepositOrderClaimRefund);
|
|
70
|
+
//# sourceMappingURL=depositOrderClaimRefund.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"depositOrderClaimRefund.entity.js","sourceRoot":"","sources":["../../../../../src/api/app/deposit/entity/depositOrderClaimRefund.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAAyE;AACzE,2EAA+D;AAC/D,qCAAyC;AAGlC,IAAM,uBAAuB,GAA7B,MAAM,uBAAwB,SAAQ,4BAAY;CAwCxD,CAAA;AAxCY,0DAAuB;AAIlC;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACrC;AAKjB;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2DACpC;AAKnB;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACrC;AAKjB;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDAC1C;AAShB;IAPC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxD,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,KAAK;KAChB,CAAC;;sEACoC;AAKtC;IAHC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IACtB,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAC5C;AAMrB;IAJC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;IACR,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAC/C,IAAI;yDAAQ;kCAvCZ,uBAAuB;IADnC,IAAA,gBAAM,EAAC,4BAA4B,CAAC;GACxB,uBAAuB,CAwCnC"}
|