@platform-modules/civil-aviation-authority 2.3.7 → 2.3.9
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/.env +9 -14
- package/dist/data-source.js +20 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +44 -1
- package/dist/models/AnnualTrainingPlanApprovalModel.d.ts +25 -0
- package/dist/models/AnnualTrainingPlanApprovalModel.js +107 -0
- package/dist/models/AnnualTrainingPlanAttachmentModel.d.ts +13 -0
- package/dist/models/AnnualTrainingPlanAttachmentModel.js +69 -0
- package/dist/models/AnnualTrainingPlanChatModel.d.ts +26 -0
- package/dist/models/AnnualTrainingPlanChatModel.js +89 -0
- package/dist/models/AnnualTrainingPlanRequestModel.d.ts +36 -0
- package/dist/models/AnnualTrainingPlanRequestModel.js +151 -0
- package/dist/models/AnnualTrainingPlanWorkflowModel.d.ts +19 -0
- package/dist/models/AnnualTrainingPlanWorkflowModel.js +81 -0
- package/dist/models/StudyLeaveApprovalModel.d.ts +25 -0
- package/dist/models/StudyLeaveApprovalModel.js +107 -0
- package/dist/models/StudyLeaveAttachmentModel.d.ts +13 -0
- package/dist/models/StudyLeaveAttachmentModel.js +69 -0
- package/dist/models/StudyLeaveChatModel.d.ts +26 -0
- package/dist/models/StudyLeaveChatModel.js +89 -0
- package/dist/models/StudyLeaveRequestModel.d.ts +29 -0
- package/dist/models/StudyLeaveRequestModel.js +128 -0
- package/dist/models/StudyLeaveWorkflowModel.d.ts +19 -0
- package/dist/models/StudyLeaveWorkflowModel.js +81 -0
- package/dist/models/TemporaryAssignmentRequestModel.d.ts +49 -0
- package/dist/models/TemporaryAssignmentRequestModel.js +204 -0
- package/package.json +1 -1
- package/src/data-source.ts +20 -0
- package/src/index.ts +26 -0
- package/src/models/AnnualTrainingPlanApprovalModel.ts +94 -0
- package/src/models/AnnualTrainingPlanAttachmentModel.ts +56 -0
- package/src/models/AnnualTrainingPlanChatModel.ts +76 -0
- package/src/models/AnnualTrainingPlanRequestModel.ts +138 -0
- package/src/models/AnnualTrainingPlanWorkflowModel.ts +68 -0
- package/src/models/ITRequestChatModel.ts +62 -62
- package/src/models/ItApprovalsModel.ts +84 -84
- package/src/models/ItWorkflowModel.ts +55 -55
- package/src/models/StudyLeaveApprovalModel.ts +94 -0
- package/src/models/StudyLeaveAttachmentModel.ts +56 -0
- package/src/models/StudyLeaveChatModel.ts +76 -0
- package/src/models/StudyLeaveRequestModel.ts +114 -0
- package/src/models/StudyLeaveWorkflowModel.ts +68 -0
- package/src/models/TemporaryAssignmentRequestModel.ts +194 -0
- package/dist/models/ITApprovalSettings.d.ts +0 -7
- package/dist/models/ITApprovalSettings.js +0 -40
- package/dist/models/ITServicesTypesMuscatModel.d.ts +0 -6
- package/dist/models/ITServicesTypesMuscatModel.js +0 -34
- package/dist/models/ITServicesTypesSalalahModel.d.ts +0 -6
- package/dist/models/ITServicesTypesSalalahModel.js +0 -34
- package/dist/models/Workflows.d.ts +0 -0
- package/dist/models/Workflows.js +0 -31
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from "./BaseModel";
|
|
3
|
+
|
|
4
|
+
export enum TemporaryAssignmentRequestStatus {
|
|
5
|
+
PENDING = "Pending",
|
|
6
|
+
ASSIGNED = "Assigned",
|
|
7
|
+
IN_PROGRESS = "In Progress",
|
|
8
|
+
COMPLETED = "Completed",
|
|
9
|
+
APPROVED = "Approved",
|
|
10
|
+
REJECTED = "Rejected"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export enum SalaryPaymentSource {
|
|
14
|
+
AUTHORITY = "Authority",
|
|
15
|
+
OTHER_ENTITY = "Other Entity"
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@Entity({ name: "temporary_assignment_requests" })
|
|
19
|
+
export class TemporaryAssignmentRequest extends BaseModel {
|
|
20
|
+
@Column({ type: "integer", nullable: true })
|
|
21
|
+
req_user_department_id: number | null;
|
|
22
|
+
|
|
23
|
+
@Column({ type: "integer", nullable: true })
|
|
24
|
+
req_user_section_id: number | null;
|
|
25
|
+
|
|
26
|
+
@Column({ type: "integer", nullable: true })
|
|
27
|
+
req_user_position_id: number | null;
|
|
28
|
+
|
|
29
|
+
@Column({ type: "integer", nullable: true })
|
|
30
|
+
service_id: number | null;
|
|
31
|
+
|
|
32
|
+
@Column({ type: "integer", nullable: true })
|
|
33
|
+
sub_service_id: number | null;
|
|
34
|
+
|
|
35
|
+
@Column({ type: "integer", nullable: false })
|
|
36
|
+
user_id: number;
|
|
37
|
+
|
|
38
|
+
@Column({ type: "text", nullable: true })
|
|
39
|
+
description: string | null;
|
|
40
|
+
|
|
41
|
+
@Column({ type: "enum", enum: TemporaryAssignmentRequestStatus, default: TemporaryAssignmentRequestStatus.PENDING, nullable: false })
|
|
42
|
+
status: TemporaryAssignmentRequestStatus;
|
|
43
|
+
|
|
44
|
+
@Column({ type: "integer", nullable: true })
|
|
45
|
+
reviewer_user_id: number | null;
|
|
46
|
+
|
|
47
|
+
@Column({ type: "integer", nullable: true })
|
|
48
|
+
assigned_to_user_id: number | null;
|
|
49
|
+
|
|
50
|
+
@Column({ type: "timestamp", nullable: true })
|
|
51
|
+
assigned_at: Date | null;
|
|
52
|
+
|
|
53
|
+
@Column({ type: "varchar", length: 255, nullable: true })
|
|
54
|
+
workflow_execution_id: string | null;
|
|
55
|
+
|
|
56
|
+
// Temporary Assignment Decision specific fields
|
|
57
|
+
@Column({ type: "varchar", length: 255, nullable: false })
|
|
58
|
+
assigned_employee_name: string;
|
|
59
|
+
|
|
60
|
+
@Column({ type: "varchar", length: 50, nullable: true })
|
|
61
|
+
civil_id_card_number: string | null;
|
|
62
|
+
|
|
63
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
64
|
+
employee_id: string;
|
|
65
|
+
|
|
66
|
+
@Column({ type: "varchar", length: 255, nullable: false })
|
|
67
|
+
current_job_position: string;
|
|
68
|
+
|
|
69
|
+
@Column({ type: "varchar", length: 255, nullable: false })
|
|
70
|
+
assigned_job_position: string;
|
|
71
|
+
|
|
72
|
+
@Column({ type: "integer", nullable: true })
|
|
73
|
+
original_department_id: number;
|
|
74
|
+
|
|
75
|
+
@Column({ type: "integer", nullable: true })
|
|
76
|
+
assigned_department_id: number;
|
|
77
|
+
|
|
78
|
+
@Column({ type: "varchar", length: 500, nullable: true })
|
|
79
|
+
entity: string | null;
|
|
80
|
+
|
|
81
|
+
@Column({ type: "date", nullable: false })
|
|
82
|
+
start_date: Date;
|
|
83
|
+
|
|
84
|
+
@Column({ type: "date", nullable: false })
|
|
85
|
+
end_date: Date;
|
|
86
|
+
|
|
87
|
+
@Column({ type: "varchar", length: 20, nullable: false })
|
|
88
|
+
phone_number: string;
|
|
89
|
+
|
|
90
|
+
@Column({ type: "text", nullable: false })
|
|
91
|
+
reason_for_request: string;
|
|
92
|
+
|
|
93
|
+
// NEW FIELDS for External Temporary Assignment
|
|
94
|
+
@Column({ type: "enum", enum: SalaryPaymentSource, nullable: false })
|
|
95
|
+
salary_payment_source: SalaryPaymentSource;
|
|
96
|
+
|
|
97
|
+
@Column({ type: "varchar", length: 500, nullable: true })
|
|
98
|
+
social_service_fund_contribution: string | null;
|
|
99
|
+
|
|
100
|
+
// Replacement tracking fields
|
|
101
|
+
@Column({ type: "boolean", default: false, nullable: false })
|
|
102
|
+
is_replaced: boolean;
|
|
103
|
+
|
|
104
|
+
@Column({ type: "varchar", length: 255, nullable: true })
|
|
105
|
+
replacement_employee_name: string | null;
|
|
106
|
+
|
|
107
|
+
@Column({ type: "varchar", length: 100, nullable: true })
|
|
108
|
+
replacement_employee_id: string | null;
|
|
109
|
+
|
|
110
|
+
@Column({ type: "varchar", length: 50, nullable: true })
|
|
111
|
+
replacement_civil_id_card_number: string | null;
|
|
112
|
+
|
|
113
|
+
@Column({ type: "text", nullable: true })
|
|
114
|
+
replacement_reason: string | null;
|
|
115
|
+
|
|
116
|
+
@Column({ type: "integer", nullable: true })
|
|
117
|
+
replaced_by_user_id: number | null;
|
|
118
|
+
|
|
119
|
+
@Column({ type: "timestamp", nullable: true })
|
|
120
|
+
replaced_at: Date | null;
|
|
121
|
+
|
|
122
|
+
constructor(
|
|
123
|
+
user_id: number,
|
|
124
|
+
status: TemporaryAssignmentRequestStatus = TemporaryAssignmentRequestStatus.PENDING,
|
|
125
|
+
service_id?: number | null,
|
|
126
|
+
sub_service_id?: number | null,
|
|
127
|
+
req_user_department_id?: number | null,
|
|
128
|
+
req_user_section_id?: number | null,
|
|
129
|
+
req_user_position_id?: number | null,
|
|
130
|
+
description?: string | null,
|
|
131
|
+
reviewer_user_id?: number | null,
|
|
132
|
+
assigned_to_user_id?: number | null,
|
|
133
|
+
assigned_at?: Date | null,
|
|
134
|
+
workflow_execution_id?: string | null,
|
|
135
|
+
assigned_employee_name?: string,
|
|
136
|
+
civil_id_card_number?: string | null,
|
|
137
|
+
employee_id?: string,
|
|
138
|
+
current_job_position?: string,
|
|
139
|
+
assigned_job_position?: string,
|
|
140
|
+
original_department_id?: number,
|
|
141
|
+
assigned_department_id?: number,
|
|
142
|
+
entity?: string | null,
|
|
143
|
+
start_date?: Date,
|
|
144
|
+
end_date?: Date,
|
|
145
|
+
phone_number?: string,
|
|
146
|
+
reason_for_request?: string,
|
|
147
|
+
salary_payment_source?: SalaryPaymentSource,
|
|
148
|
+
social_service_fund_contribution?: string | null,
|
|
149
|
+
is_replaced?: boolean,
|
|
150
|
+
replacement_employee_name?: string | null,
|
|
151
|
+
replacement_employee_id?: string | null,
|
|
152
|
+
replacement_civil_id_card_number?: string | null,
|
|
153
|
+
replacement_reason?: string | null,
|
|
154
|
+
replaced_by_user_id?: number | null,
|
|
155
|
+
replaced_at?: Date | null
|
|
156
|
+
) {
|
|
157
|
+
super();
|
|
158
|
+
this.user_id = user_id;
|
|
159
|
+
this.status = status;
|
|
160
|
+
this.service_id = service_id || null;
|
|
161
|
+
this.sub_service_id = sub_service_id || null;
|
|
162
|
+
this.req_user_department_id = req_user_department_id || null;
|
|
163
|
+
this.req_user_section_id = req_user_section_id || null;
|
|
164
|
+
this.req_user_position_id = req_user_position_id || null;
|
|
165
|
+
this.description = description || null;
|
|
166
|
+
this.reviewer_user_id = reviewer_user_id || null;
|
|
167
|
+
this.assigned_to_user_id = assigned_to_user_id || null;
|
|
168
|
+
this.assigned_at = assigned_at || null;
|
|
169
|
+
this.workflow_execution_id = workflow_execution_id || null;
|
|
170
|
+
this.assigned_employee_name = assigned_employee_name || "";
|
|
171
|
+
this.civil_id_card_number = civil_id_card_number || null;
|
|
172
|
+
this.employee_id = employee_id || "";
|
|
173
|
+
this.current_job_position = current_job_position || "";
|
|
174
|
+
this.assigned_job_position = assigned_job_position || "";
|
|
175
|
+
this.original_department_id = original_department_id || 0;
|
|
176
|
+
this.assigned_department_id = assigned_department_id || 0;
|
|
177
|
+
this.entity = entity || null;
|
|
178
|
+
this.start_date = start_date || new Date();
|
|
179
|
+
this.end_date = end_date || new Date();
|
|
180
|
+
this.phone_number = phone_number || "";
|
|
181
|
+
this.reason_for_request = reason_for_request || "";
|
|
182
|
+
this.salary_payment_source = salary_payment_source || SalaryPaymentSource.AUTHORITY;
|
|
183
|
+
this.social_service_fund_contribution = social_service_fund_contribution || null;
|
|
184
|
+
this.is_replaced = is_replaced || false;
|
|
185
|
+
this.replacement_employee_name = replacement_employee_name || null;
|
|
186
|
+
this.replacement_employee_id = replacement_employee_id || null;
|
|
187
|
+
this.replacement_civil_id_card_number = replacement_civil_id_card_number || null;
|
|
188
|
+
this.replacement_reason = replacement_reason || null;
|
|
189
|
+
this.replaced_by_user_id = replaced_by_user_id || null;
|
|
190
|
+
this.replaced_at = replaced_at || null;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
|
|
@@ -1,40 +0,0 @@
|
|
|
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.ITApprovalSettings = void 0;
|
|
13
|
-
const typeorm_1 = require("typeorm");
|
|
14
|
-
const BaseModel_1 = require("./BaseModel");
|
|
15
|
-
let ITApprovalSettings = class ITApprovalSettings extends BaseModel_1.BaseModel {
|
|
16
|
-
constructor(level, approval_role_id, workflow_id) {
|
|
17
|
-
super();
|
|
18
|
-
this.level = level;
|
|
19
|
-
this.approval_role_id = approval_role_id;
|
|
20
|
-
this.workflow_id = workflow_id;
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
exports.ITApprovalSettings = ITApprovalSettings;
|
|
24
|
-
__decorate([
|
|
25
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
26
|
-
__metadata("design:type", Number)
|
|
27
|
-
], ITApprovalSettings.prototype, "level", void 0);
|
|
28
|
-
__decorate([
|
|
29
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
30
|
-
__metadata("design:type", Number)
|
|
31
|
-
], ITApprovalSettings.prototype, "approval_role_id", void 0);
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
34
|
-
__metadata("design:type", Number)
|
|
35
|
-
], ITApprovalSettings.prototype, "workflow_id", void 0);
|
|
36
|
-
exports.ITApprovalSettings = ITApprovalSettings = __decorate([
|
|
37
|
-
(0, typeorm_1.Entity)({ name: 'it_approval_settings' }),
|
|
38
|
-
(0, typeorm_1.Unique)(['workflow_id', 'level']),
|
|
39
|
-
__metadata("design:paramtypes", [Number, Number, Number])
|
|
40
|
-
], ITApprovalSettings);
|
|
@@ -1,34 +0,0 @@
|
|
|
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.ITServicesTypesMuscat = void 0;
|
|
13
|
-
const typeorm_1 = require("typeorm");
|
|
14
|
-
const BaseModel_1 = require("./BaseModel");
|
|
15
|
-
let ITServicesTypesMuscat = class ITServicesTypesMuscat extends BaseModel_1.BaseModel {
|
|
16
|
-
constructor(name, name_in_arabic) {
|
|
17
|
-
super();
|
|
18
|
-
this.name = name;
|
|
19
|
-
this.name_in_arabic = name_in_arabic;
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
exports.ITServicesTypesMuscat = ITServicesTypesMuscat;
|
|
23
|
-
__decorate([
|
|
24
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
25
|
-
__metadata("design:type", String)
|
|
26
|
-
], ITServicesTypesMuscat.prototype, "name", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
29
|
-
__metadata("design:type", String)
|
|
30
|
-
], ITServicesTypesMuscat.prototype, "name_in_arabic", void 0);
|
|
31
|
-
exports.ITServicesTypesMuscat = ITServicesTypesMuscat = __decorate([
|
|
32
|
-
(0, typeorm_1.Entity)({ name: 'it_services_types_muscat' }),
|
|
33
|
-
__metadata("design:paramtypes", [String, String])
|
|
34
|
-
], ITServicesTypesMuscat);
|
|
@@ -1,34 +0,0 @@
|
|
|
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.ITServicesTypesSalalah = void 0;
|
|
13
|
-
const typeorm_1 = require("typeorm");
|
|
14
|
-
const BaseModel_1 = require("./BaseModel");
|
|
15
|
-
let ITServicesTypesSalalah = class ITServicesTypesSalalah extends BaseModel_1.BaseModel {
|
|
16
|
-
constructor(name, name_in_arabic) {
|
|
17
|
-
super();
|
|
18
|
-
this.name = name;
|
|
19
|
-
this.name_in_arabic = name_in_arabic;
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
exports.ITServicesTypesSalalah = ITServicesTypesSalalah;
|
|
23
|
-
__decorate([
|
|
24
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
25
|
-
__metadata("design:type", String)
|
|
26
|
-
], ITServicesTypesSalalah.prototype, "name", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
29
|
-
__metadata("design:type", String)
|
|
30
|
-
], ITServicesTypesSalalah.prototype, "name_in_arabic", void 0);
|
|
31
|
-
exports.ITServicesTypesSalalah = ITServicesTypesSalalah = __decorate([
|
|
32
|
-
(0, typeorm_1.Entity)({ name: 'it_services_types_salalah' }),
|
|
33
|
-
__metadata("design:paramtypes", [String, String])
|
|
34
|
-
], ITServicesTypesSalalah);
|
|
File without changes
|
package/dist/models/Workflows.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// import { Column, Entity, Unique } from "typeorm";
|
|
3
|
-
// import { BaseModel } from './BaseModel';
|
|
4
|
-
// @Entity({ name: 'workflows' })
|
|
5
|
-
// @Unique(['service_id', 'sub_service_id', 'request_for'])
|
|
6
|
-
// export class Workflows extends BaseModel {
|
|
7
|
-
// @Column({ type: 'varchar', length: 100, nullable: false })
|
|
8
|
-
// name: string;
|
|
9
|
-
// @Column({ type: 'bigint', nullable: false })
|
|
10
|
-
// service_id: number;
|
|
11
|
-
// @Column({ type: 'bigint', nullable: false })
|
|
12
|
-
// sub_service_id: number;
|
|
13
|
-
// @Column({ type: 'varchar', length: 20, nullable: false })
|
|
14
|
-
// request_for: string; // 'Self' | 'Behalf of' | 'Internal'
|
|
15
|
-
// @Column({ type: 'int', nullable: false })
|
|
16
|
-
// levels: number;
|
|
17
|
-
// constructor(
|
|
18
|
-
// name: string,
|
|
19
|
-
// service_id: number,
|
|
20
|
-
// sub_service_id: number,
|
|
21
|
-
// request_for: string,
|
|
22
|
-
// levels: number,
|
|
23
|
-
// ) {
|
|
24
|
-
// super();
|
|
25
|
-
// this.name = name;
|
|
26
|
-
// this.service_id = service_id;
|
|
27
|
-
// this.sub_service_id = sub_service_id;
|
|
28
|
-
// this.request_for = request_for;
|
|
29
|
-
// this.levels = levels;
|
|
30
|
-
// }
|
|
31
|
-
// }
|