@uniorganization/uni-lib 1.1.78 → 1.1.80
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.
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare class ClaimReport {
|
|
2
|
+
id: number;
|
|
3
|
+
transactionId: String;
|
|
4
|
+
postingdate: Date;
|
|
5
|
+
statust: String;
|
|
6
|
+
endCustomer: String;
|
|
7
|
+
endCustomerT: String;
|
|
8
|
+
employeeResponsible: String;
|
|
9
|
+
employeeResponsibleName: String;
|
|
10
|
+
agreedSolution1: String;
|
|
11
|
+
agreedSolution1T: String;
|
|
12
|
+
agreedSolution2: String;
|
|
13
|
+
agreedSolution2T: String;
|
|
14
|
+
changedAt: Date;
|
|
15
|
+
changedBy: String;
|
|
16
|
+
parentFollowup: String;
|
|
17
|
+
parentFollowupStatus: String;
|
|
18
|
+
parentFollowupReason: String;
|
|
19
|
+
customersCommentsHistory: String;
|
|
20
|
+
aging: Number;
|
|
21
|
+
channel: String;
|
|
22
|
+
nextObjectId: String;
|
|
23
|
+
nextPostingDate: Date;
|
|
24
|
+
nextStatusD: String;
|
|
25
|
+
referencestatus: String;
|
|
26
|
+
gcicId: String;
|
|
27
|
+
lastUpdate: Date;
|
|
28
|
+
dueDate: Date;
|
|
29
|
+
whenToWork: String;
|
|
30
|
+
gcicToCompare: String;
|
|
31
|
+
changedByName: String;
|
|
32
|
+
changedByResponsible: String;
|
|
33
|
+
reasonForDelay: String;
|
|
34
|
+
division: String;
|
|
35
|
+
lob: String;
|
|
36
|
+
campaign: String;
|
|
37
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
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.ClaimReport = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
let ClaimReport = class ClaimReport {
|
|
15
|
+
};
|
|
16
|
+
__decorate([
|
|
17
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
18
|
+
__metadata("design:type", Number)
|
|
19
|
+
], ClaimReport.prototype, "id", void 0);
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)({ name: 'transaction_id' }),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], ClaimReport.prototype, "transactionId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, typeorm_1.Column)('date', { name: 'posting_date' }),
|
|
26
|
+
__metadata("design:type", Date)
|
|
27
|
+
], ClaimReport.prototype, "postingdate", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ClaimReport.prototype, "statust", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ name: 'end_customer' }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ClaimReport.prototype, "endCustomer", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)({ name: 'end_customer_t' }),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], ClaimReport.prototype, "endCustomerT", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.Column)({ name: 'employee_responsible' }),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], ClaimReport.prototype, "employeeResponsible", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.Column)({ name: 'employee_responsible_name' }),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], ClaimReport.prototype, "employeeResponsibleName", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.Column)({ name: 'agreed_solution_i' }),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], ClaimReport.prototype, "agreedSolution1", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.Column)({ name: 'agreed_solution_i_t' }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], ClaimReport.prototype, "agreedSolution1T", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Column)({ name: 'agreed_solution_ii' }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], ClaimReport.prototype, "agreedSolution2", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.Column)({ name: 'agreed_solution_ii_t' }),
|
|
62
|
+
__metadata("design:type", String)
|
|
63
|
+
], ClaimReport.prototype, "agreedSolution2T", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.Column)('timestamp', { name: 'changed_at' }),
|
|
66
|
+
__metadata("design:type", Date)
|
|
67
|
+
], ClaimReport.prototype, "changedAt", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.Column)({ name: 'changed_by' }),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], ClaimReport.prototype, "changedBy", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.Column)({ name: 'parent_follow_up' }),
|
|
74
|
+
__metadata("design:type", String)
|
|
75
|
+
], ClaimReport.prototype, "parentFollowup", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.Column)({ name: 'parent_follow_up_status' }),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], ClaimReport.prototype, "parentFollowupStatus", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.Column)({ name: 'parent_follow_up_reason' }),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], ClaimReport.prototype, "parentFollowupReason", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.Column)({ name: 'customers_comment_history' }),
|
|
86
|
+
__metadata("design:type", String)
|
|
87
|
+
], ClaimReport.prototype, "customersCommentsHistory", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.Column)(),
|
|
90
|
+
__metadata("design:type", Number)
|
|
91
|
+
], ClaimReport.prototype, "aging", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.Column)(),
|
|
94
|
+
__metadata("design:type", String)
|
|
95
|
+
], ClaimReport.prototype, "channel", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.Column)({ name: 'next_object_id' }),
|
|
98
|
+
__metadata("design:type", String)
|
|
99
|
+
], ClaimReport.prototype, "nextObjectId", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.Column)('date', { name: 'next_posting_date' }),
|
|
102
|
+
__metadata("design:type", Date)
|
|
103
|
+
], ClaimReport.prototype, "nextPostingDate", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.Column)({ name: 'next_status_d' }),
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], ClaimReport.prototype, "nextStatusD", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.Column)({ name: 'reference_status' }),
|
|
110
|
+
__metadata("design:type", String)
|
|
111
|
+
], ClaimReport.prototype, "referencestatus", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.Column)({ name: 'gcic_id' }),
|
|
114
|
+
__metadata("design:type", String)
|
|
115
|
+
], ClaimReport.prototype, "gcicId", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.Column)('date', { name: 'last_update' }),
|
|
118
|
+
__metadata("design:type", Date)
|
|
119
|
+
], ClaimReport.prototype, "lastUpdate", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.Column)('date', { name: 'due_date' }),
|
|
122
|
+
__metadata("design:type", Date)
|
|
123
|
+
], ClaimReport.prototype, "dueDate", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, typeorm_1.Column)({ name: 'when_to_work' }),
|
|
126
|
+
__metadata("design:type", String)
|
|
127
|
+
], ClaimReport.prototype, "whenToWork", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.Column)({ name: 'gcic_to_compare' }),
|
|
130
|
+
__metadata("design:type", String)
|
|
131
|
+
], ClaimReport.prototype, "gcicToCompare", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, typeorm_1.Column)({ name: 'changed_by_name' }),
|
|
134
|
+
__metadata("design:type", String)
|
|
135
|
+
], ClaimReport.prototype, "changedByName", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, typeorm_1.Column)({ name: 'changed_by_responsible' }),
|
|
138
|
+
__metadata("design:type", String)
|
|
139
|
+
], ClaimReport.prototype, "changedByResponsible", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, typeorm_1.Column)({ name: 'reason_for_delay' }),
|
|
142
|
+
__metadata("design:type", String)
|
|
143
|
+
], ClaimReport.prototype, "reasonForDelay", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, typeorm_1.Column)(),
|
|
146
|
+
__metadata("design:type", String)
|
|
147
|
+
], ClaimReport.prototype, "division", void 0);
|
|
148
|
+
__decorate([
|
|
149
|
+
(0, typeorm_1.Column)(),
|
|
150
|
+
__metadata("design:type", String)
|
|
151
|
+
], ClaimReport.prototype, "lob", void 0);
|
|
152
|
+
__decorate([
|
|
153
|
+
(0, typeorm_1.Column)(),
|
|
154
|
+
__metadata("design:type", String)
|
|
155
|
+
], ClaimReport.prototype, "campaign", void 0);
|
|
156
|
+
ClaimReport = __decorate([
|
|
157
|
+
(0, typeorm_1.Entity)('claim_report', { schema: 'tracking' })
|
|
158
|
+
], ClaimReport);
|
|
159
|
+
exports.ClaimReport = ClaimReport;
|