@platform-modules/foreign-ministry 1.3.309 → 1.3.315
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/dist/models/ServiceSlaApprovalModel.d.ts +5 -1
- package/dist/models/ServiceSlaApprovalModel.js +21 -4
- package/package.json +1 -1
- package/src/models/EmbassyEvaluationAssignmentModel.ts +63 -63
- package/src/models/EmployeeOfMonthSupportNominationApprovalModel.ts +60 -60
- package/src/models/ServiceSlaApprovalModel.ts +112 -43
- package/src/models/SlaRequestModel.ts +1 -1
|
@@ -6,8 +6,12 @@ export declare class ServiceSlaApproval extends BaseModel {
|
|
|
6
6
|
sub_service_id: number | null;
|
|
7
7
|
approval_status: string;
|
|
8
8
|
level: number;
|
|
9
|
-
approver_user_id: number | null;
|
|
10
9
|
approver_role_id: number | null;
|
|
11
10
|
department_id: number | null;
|
|
12
11
|
section_id: number | null;
|
|
12
|
+
approver_user_id: number | null;
|
|
13
|
+
delegate_user_id: number | null;
|
|
14
|
+
approved_by: number | null;
|
|
15
|
+
comment: string;
|
|
16
|
+
is_allowed: boolean;
|
|
13
17
|
}
|
|
@@ -39,10 +39,6 @@ __decorate([
|
|
|
39
39
|
(0, typeorm_1.Column)({ type: "int" }),
|
|
40
40
|
__metadata("design:type", Number)
|
|
41
41
|
], ServiceSlaApproval.prototype, "level", void 0);
|
|
42
|
-
__decorate([
|
|
43
|
-
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
44
|
-
__metadata("design:type", Object)
|
|
45
|
-
], ServiceSlaApproval.prototype, "approver_user_id", void 0);
|
|
46
42
|
__decorate([
|
|
47
43
|
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
48
44
|
__metadata("design:type", Object)
|
|
@@ -55,6 +51,26 @@ __decorate([
|
|
|
55
51
|
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
56
52
|
__metadata("design:type", Object)
|
|
57
53
|
], ServiceSlaApproval.prototype, "section_id", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
56
|
+
__metadata("design:type", Object)
|
|
57
|
+
], ServiceSlaApproval.prototype, "approver_user_id", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
60
|
+
__metadata("design:type", Object)
|
|
61
|
+
], ServiceSlaApproval.prototype, "delegate_user_id", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
64
|
+
__metadata("design:type", Object)
|
|
65
|
+
], ServiceSlaApproval.prototype, "approved_by", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 500, nullable: true, default: "" }),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], ServiceSlaApproval.prototype, "comment", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, typeorm_1.Column)({ type: "boolean", default: true, nullable: false }),
|
|
72
|
+
__metadata("design:type", Boolean)
|
|
73
|
+
], ServiceSlaApproval.prototype, "is_allowed", void 0);
|
|
58
74
|
exports.ServiceSlaApproval = ServiceSlaApproval = __decorate([
|
|
59
75
|
(0, typeorm_1.Entity)({ name: "sla_approval" }),
|
|
60
76
|
(0, typeorm_1.Index)("idx_sla_approval_request_id", ["request_id"]),
|
|
@@ -63,6 +79,7 @@ exports.ServiceSlaApproval = ServiceSlaApproval = __decorate([
|
|
|
63
79
|
(0, typeorm_1.Index)("idx_sla_approval_approval_status", ["approval_status"]),
|
|
64
80
|
(0, typeorm_1.Index)("idx_sla_approval_level", ["level"]),
|
|
65
81
|
(0, typeorm_1.Index)("idx_sla_approval_approver_user_id", ["approver_user_id"]),
|
|
82
|
+
(0, typeorm_1.Index)("idx_sla_approval_delegate_user_id", ["delegate_user_id"]),
|
|
66
83
|
(0, typeorm_1.Index)("idx_sla_approval_request_level", ["request_id", "level"]),
|
|
67
84
|
(0, typeorm_1.Index)("idx_sla_approval_svc_sub_status", ["service_id", "sub_service_id", "approval_status"])
|
|
68
85
|
], ServiceSlaApproval);
|
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
import { Column, Entity, Index } from 'typeorm';
|
|
2
|
-
import { BaseModel } from './BaseModel';
|
|
3
|
-
|
|
4
|
-
export enum EmbassyEvaluationAssignmentStatus {
|
|
5
|
-
PENDING = 'Pending',
|
|
6
|
-
IN_PROGRESS = 'In Progress',
|
|
7
|
-
SUBMITTED = 'Submitted',
|
|
8
|
-
LOCKED = 'Locked',
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@Entity({ name: 'embassy_evaluation_assignments' })
|
|
12
|
-
@Index('uq_embassy_eval_assignment', ['cycle_id', 'evaluation_year', 'mc_id', 'department_id', 'section_id'], {
|
|
13
|
-
unique: true,
|
|
14
|
-
where: '"is_deleted" = false',
|
|
15
|
-
})
|
|
16
|
-
export class EmbassyEvaluationAssignment extends BaseModel {
|
|
17
|
-
@Column({ type: 'int', nullable: false })
|
|
18
|
-
cycle_id: number;
|
|
19
|
-
|
|
20
|
-
/** Set at activation from cycle window + reference date; separates runs per year (not on cycle row). */
|
|
21
|
-
@Column({ type: 'int', nullable: false })
|
|
22
|
-
evaluation_year: number;
|
|
23
|
-
|
|
24
|
-
@Column({ type: 'int', nullable: false })
|
|
25
|
-
mc_id: number;
|
|
26
|
-
|
|
27
|
-
@Column({ type: 'int', nullable: false })
|
|
28
|
-
department_id: number;
|
|
29
|
-
|
|
30
|
-
@Column({ type: 'int', nullable: false })
|
|
31
|
-
section_id: number;
|
|
32
|
-
|
|
33
|
-
@Column({ type: 'int', nullable: false })
|
|
34
|
-
form_id: number;
|
|
35
|
-
|
|
36
|
-
@Column({ type: 'int', nullable: true })
|
|
37
|
-
assigned_to_user_id: number | null;
|
|
38
|
-
|
|
39
|
-
@Column({
|
|
40
|
-
type: 'enum',
|
|
41
|
-
enum: EmbassyEvaluationAssignmentStatus,
|
|
42
|
-
enumName: 'embassy_eval_assignment_status_enum',
|
|
43
|
-
default: EmbassyEvaluationAssignmentStatus.PENDING,
|
|
44
|
-
nullable: false,
|
|
45
|
-
})
|
|
46
|
-
status: EmbassyEvaluationAssignmentStatus;
|
|
47
|
-
|
|
48
|
-
@Column({ type: 'timestamp', nullable: true })
|
|
49
|
-
due_date: Date | null;
|
|
50
|
-
|
|
51
|
-
@Column({ type: 'timestamp', nullable: true })
|
|
52
|
-
submitted_at: Date | null;
|
|
53
|
-
|
|
54
|
-
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
55
|
-
score: number | null;
|
|
56
|
-
|
|
57
|
-
@Column({ type: 'boolean', default: false, nullable: false })
|
|
58
|
-
workflow_triggered: boolean;
|
|
59
|
-
|
|
60
|
-
/** Set when cycle batch request is created after all mandatory evaluations complete. */
|
|
61
|
-
@Column({ type: 'int', nullable: true })
|
|
62
|
-
request_id: number | null;
|
|
63
|
-
}
|
|
1
|
+
import { Column, Entity, Index } from 'typeorm';
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
|
|
4
|
+
export enum EmbassyEvaluationAssignmentStatus {
|
|
5
|
+
PENDING = 'Pending',
|
|
6
|
+
IN_PROGRESS = 'In Progress',
|
|
7
|
+
SUBMITTED = 'Submitted',
|
|
8
|
+
LOCKED = 'Locked',
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@Entity({ name: 'embassy_evaluation_assignments' })
|
|
12
|
+
@Index('uq_embassy_eval_assignment', ['cycle_id', 'evaluation_year', 'mc_id', 'department_id', 'section_id'], {
|
|
13
|
+
unique: true,
|
|
14
|
+
where: '"is_deleted" = false',
|
|
15
|
+
})
|
|
16
|
+
export class EmbassyEvaluationAssignment extends BaseModel {
|
|
17
|
+
@Column({ type: 'int', nullable: false })
|
|
18
|
+
cycle_id: number;
|
|
19
|
+
|
|
20
|
+
/** Set at activation from cycle window + reference date; separates runs per year (not on cycle row). */
|
|
21
|
+
@Column({ type: 'int', nullable: false })
|
|
22
|
+
evaluation_year: number;
|
|
23
|
+
|
|
24
|
+
@Column({ type: 'int', nullable: false })
|
|
25
|
+
mc_id: number;
|
|
26
|
+
|
|
27
|
+
@Column({ type: 'int', nullable: false })
|
|
28
|
+
department_id: number;
|
|
29
|
+
|
|
30
|
+
@Column({ type: 'int', nullable: false })
|
|
31
|
+
section_id: number;
|
|
32
|
+
|
|
33
|
+
@Column({ type: 'int', nullable: false })
|
|
34
|
+
form_id: number;
|
|
35
|
+
|
|
36
|
+
@Column({ type: 'int', nullable: true })
|
|
37
|
+
assigned_to_user_id: number | null;
|
|
38
|
+
|
|
39
|
+
@Column({
|
|
40
|
+
type: 'enum',
|
|
41
|
+
enum: EmbassyEvaluationAssignmentStatus,
|
|
42
|
+
enumName: 'embassy_eval_assignment_status_enum',
|
|
43
|
+
default: EmbassyEvaluationAssignmentStatus.PENDING,
|
|
44
|
+
nullable: false,
|
|
45
|
+
})
|
|
46
|
+
status: EmbassyEvaluationAssignmentStatus;
|
|
47
|
+
|
|
48
|
+
@Column({ type: 'timestamp', nullable: true })
|
|
49
|
+
due_date: Date | null;
|
|
50
|
+
|
|
51
|
+
@Column({ type: 'timestamp', nullable: true })
|
|
52
|
+
submitted_at: Date | null;
|
|
53
|
+
|
|
54
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
55
|
+
score: number | null;
|
|
56
|
+
|
|
57
|
+
@Column({ type: 'boolean', default: false, nullable: false })
|
|
58
|
+
workflow_triggered: boolean;
|
|
59
|
+
|
|
60
|
+
/** Set when cycle batch request is created after all mandatory evaluations complete. */
|
|
61
|
+
@Column({ type: 'int', nullable: true })
|
|
62
|
+
request_id: number | null;
|
|
63
|
+
}
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
import { Column, Entity } from 'typeorm';
|
|
2
|
-
import { BaseModel } from './BaseModel';
|
|
3
|
-
|
|
4
|
-
/** Approval status values (stored as varchar, not PostgreSQL enum). */
|
|
5
|
-
export const EmployeeOfMonthSupportNominationApprovalStatus = {
|
|
6
|
-
PENDING: 'Pending',
|
|
7
|
-
IN_PROGRESS: 'In Progress',
|
|
8
|
-
APPROVED: 'Approved',
|
|
9
|
-
REJECTED: 'Rejected',
|
|
10
|
-
} as const;
|
|
11
|
-
|
|
12
|
-
export type EmployeeOfMonthSupportNominationApprovalStatus =
|
|
13
|
-
(typeof EmployeeOfMonthSupportNominationApprovalStatus)[keyof typeof EmployeeOfMonthSupportNominationApprovalStatus];
|
|
14
|
-
|
|
15
|
-
@Entity({ name: 'employee_of_month_support_nomination_approvals' })
|
|
16
|
-
export class EmployeeOfMonthSupportNominationApprovalDetails extends BaseModel {
|
|
17
|
-
@Column({ type: 'integer', nullable: false })
|
|
18
|
-
request_id: number;
|
|
19
|
-
|
|
20
|
-
@Column({ type: 'integer', nullable: true })
|
|
21
|
-
service_id: number | null;
|
|
22
|
-
|
|
23
|
-
@Column({ type: 'integer', nullable: true })
|
|
24
|
-
sub_service_id: number | null;
|
|
25
|
-
|
|
26
|
-
@Column({ type: 'integer', nullable: false })
|
|
27
|
-
level: number;
|
|
28
|
-
|
|
29
|
-
@Column({ type: 'integer', nullable: true })
|
|
30
|
-
approver_role_id: number | null;
|
|
31
|
-
|
|
32
|
-
@Column({ type: 'integer', nullable: true })
|
|
33
|
-
department_id: number | null;
|
|
34
|
-
|
|
35
|
-
@Column({ type: 'integer', nullable: true })
|
|
36
|
-
section_id: number | null;
|
|
37
|
-
|
|
38
|
-
@Column({ type: 'integer', nullable: true })
|
|
39
|
-
approver_user_id: number | null;
|
|
40
|
-
|
|
41
|
-
@Column({ type: 'integer', nullable: true })
|
|
42
|
-
delegate_user_id: number | null;
|
|
43
|
-
|
|
44
|
-
@Column({ type: 'integer', nullable: true })
|
|
45
|
-
approved_by: number | null;
|
|
46
|
-
|
|
47
|
-
@Column({ type: 'varchar', length: 500, nullable: true, default: '' })
|
|
48
|
-
comment: string;
|
|
49
|
-
|
|
50
|
-
@Column({
|
|
51
|
-
type: 'varchar',
|
|
52
|
-
length: 32,
|
|
53
|
-
default: EmployeeOfMonthSupportNominationApprovalStatus.PENDING,
|
|
54
|
-
nullable: false,
|
|
55
|
-
})
|
|
56
|
-
approval_status: string;
|
|
57
|
-
|
|
58
|
-
@Column({ type: 'boolean', default: true, nullable: false })
|
|
59
|
-
is_allowed: boolean;
|
|
60
|
-
}
|
|
1
|
+
import { Column, Entity } from 'typeorm';
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
|
|
4
|
+
/** Approval status values (stored as varchar, not PostgreSQL enum). */
|
|
5
|
+
export const EmployeeOfMonthSupportNominationApprovalStatus = {
|
|
6
|
+
PENDING: 'Pending',
|
|
7
|
+
IN_PROGRESS: 'In Progress',
|
|
8
|
+
APPROVED: 'Approved',
|
|
9
|
+
REJECTED: 'Rejected',
|
|
10
|
+
} as const;
|
|
11
|
+
|
|
12
|
+
export type EmployeeOfMonthSupportNominationApprovalStatus =
|
|
13
|
+
(typeof EmployeeOfMonthSupportNominationApprovalStatus)[keyof typeof EmployeeOfMonthSupportNominationApprovalStatus];
|
|
14
|
+
|
|
15
|
+
@Entity({ name: 'employee_of_month_support_nomination_approvals' })
|
|
16
|
+
export class EmployeeOfMonthSupportNominationApprovalDetails extends BaseModel {
|
|
17
|
+
@Column({ type: 'integer', nullable: false })
|
|
18
|
+
request_id: number;
|
|
19
|
+
|
|
20
|
+
@Column({ type: 'integer', nullable: true })
|
|
21
|
+
service_id: number | null;
|
|
22
|
+
|
|
23
|
+
@Column({ type: 'integer', nullable: true })
|
|
24
|
+
sub_service_id: number | null;
|
|
25
|
+
|
|
26
|
+
@Column({ type: 'integer', nullable: false })
|
|
27
|
+
level: number;
|
|
28
|
+
|
|
29
|
+
@Column({ type: 'integer', nullable: true })
|
|
30
|
+
approver_role_id: number | null;
|
|
31
|
+
|
|
32
|
+
@Column({ type: 'integer', nullable: true })
|
|
33
|
+
department_id: number | null;
|
|
34
|
+
|
|
35
|
+
@Column({ type: 'integer', nullable: true })
|
|
36
|
+
section_id: number | null;
|
|
37
|
+
|
|
38
|
+
@Column({ type: 'integer', nullable: true })
|
|
39
|
+
approver_user_id: number | null;
|
|
40
|
+
|
|
41
|
+
@Column({ type: 'integer', nullable: true })
|
|
42
|
+
delegate_user_id: number | null;
|
|
43
|
+
|
|
44
|
+
@Column({ type: 'integer', nullable: true })
|
|
45
|
+
approved_by: number | null;
|
|
46
|
+
|
|
47
|
+
@Column({ type: 'varchar', length: 500, nullable: true, default: '' })
|
|
48
|
+
comment: string;
|
|
49
|
+
|
|
50
|
+
@Column({
|
|
51
|
+
type: 'varchar',
|
|
52
|
+
length: 32,
|
|
53
|
+
default: EmployeeOfMonthSupportNominationApprovalStatus.PENDING,
|
|
54
|
+
nullable: false,
|
|
55
|
+
})
|
|
56
|
+
approval_status: string;
|
|
57
|
+
|
|
58
|
+
@Column({ type: 'boolean', default: true, nullable: false })
|
|
59
|
+
is_allowed: boolean;
|
|
60
|
+
}
|
|
@@ -1,43 +1,112 @@
|
|
|
1
|
-
import { Column, Entity, Index } from "typeorm";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
@
|
|
8
|
-
|
|
9
|
-
@Index("
|
|
10
|
-
|
|
11
|
-
@Index("
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
@Column({ type: "int" })
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
@Column({ type: "int"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
@Column({ type: "int", nullable: true })
|
|
42
|
-
|
|
43
|
-
|
|
1
|
+
import { Column, Entity, Index } from "typeorm";
|
|
2
|
+
|
|
3
|
+
import { BaseModel } from "./BaseModel";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@Entity({ name: "sla_approval" })
|
|
8
|
+
|
|
9
|
+
@Index("idx_sla_approval_request_id", ["request_id"])
|
|
10
|
+
|
|
11
|
+
@Index("idx_sla_approval_source_approval_id", ["source_approval_id"])
|
|
12
|
+
|
|
13
|
+
@Index("idx_sla_approval_service_subservice", ["service_id", "sub_service_id"])
|
|
14
|
+
|
|
15
|
+
@Index("idx_sla_approval_approval_status", ["approval_status"])
|
|
16
|
+
|
|
17
|
+
@Index("idx_sla_approval_level", ["level"])
|
|
18
|
+
|
|
19
|
+
@Index("idx_sla_approval_approver_user_id", ["approver_user_id"])
|
|
20
|
+
|
|
21
|
+
@Index("idx_sla_approval_delegate_user_id", ["delegate_user_id"])
|
|
22
|
+
|
|
23
|
+
@Index("idx_sla_approval_request_level", ["request_id", "level"])
|
|
24
|
+
|
|
25
|
+
@Index("idx_sla_approval_svc_sub_status", ["service_id", "sub_service_id", "approval_status"])
|
|
26
|
+
|
|
27
|
+
export class ServiceSlaApproval extends BaseModel {
|
|
28
|
+
|
|
29
|
+
@Column({ type: "int" })
|
|
30
|
+
|
|
31
|
+
request_id: number;
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
@Column({ type: "int" })
|
|
36
|
+
|
|
37
|
+
source_approval_id: number;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
@Column({ type: "int", nullable: true })
|
|
42
|
+
|
|
43
|
+
service_id: number | null;
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@Column({ type: "int", nullable: true })
|
|
48
|
+
|
|
49
|
+
sub_service_id: number | null;
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
@Column({ type: "varchar", length: 64 })
|
|
54
|
+
|
|
55
|
+
approval_status: string;
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
@Column({ type: "int" })
|
|
60
|
+
|
|
61
|
+
level: number;
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
@Column({ type: "int", nullable: true })
|
|
66
|
+
|
|
67
|
+
approver_role_id: number | null;
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
@Column({ type: "int", nullable: true })
|
|
72
|
+
|
|
73
|
+
department_id: number | null;
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
@Column({ type: "int", nullable: true })
|
|
78
|
+
|
|
79
|
+
section_id: number | null;
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
@Column({ type: "int", nullable: true })
|
|
84
|
+
|
|
85
|
+
approver_user_id: number | null;
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
@Column({ type: "int", nullable: true })
|
|
90
|
+
|
|
91
|
+
delegate_user_id: number | null;
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
@Column({ type: "int", nullable: true })
|
|
96
|
+
|
|
97
|
+
approved_by: number | null;
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
@Column({ type: "varchar", length: 500, nullable: true, default: "" })
|
|
102
|
+
|
|
103
|
+
comment: string;
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
@Column({ type: "boolean", default: true, nullable: false })
|
|
108
|
+
|
|
109
|
+
is_allowed: boolean;
|
|
110
|
+
|
|
111
|
+
}
|
|
112
|
+
|
|
@@ -9,7 +9,7 @@ export enum SlaRequestStatus {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@Entity({ name: "sla_requests" })
|
|
12
|
-
@Index("uq_sla_requests_request_id", ["request_id"]
|
|
12
|
+
// @Index("uq_sla_requests_request_id", ["request_id"])
|
|
13
13
|
@Index("idx_sla_requests_user_id", ["user_id"])
|
|
14
14
|
@Index("idx_sla_requests_service_subservice", ["service_id", "sub_service_id"])
|
|
15
15
|
@Index("idx_sla_requests_workflow_execution_id", ["workflow_execution_id"])
|