gst-common 1.3.77 → 1.3.78
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/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -655,7 +655,7 @@ type TLessonCheckOverlap = {
|
|
|
655
655
|
extendLessonTimes?: TExtendLessonTimesDTO[];
|
|
656
656
|
};
|
|
657
657
|
type TCLassStatistic = {
|
|
658
|
-
classId
|
|
658
|
+
classId?: string;
|
|
659
659
|
startTime?: string;
|
|
660
660
|
endTime?: string;
|
|
661
661
|
};
|
|
@@ -722,7 +722,7 @@ type TProposedLearningStudentDetail = {
|
|
|
722
722
|
id: string;
|
|
723
723
|
};
|
|
724
724
|
type TClassStatisticGroupByMonth = {
|
|
725
|
-
classId
|
|
725
|
+
classId?: string;
|
|
726
726
|
numberOfYear: number;
|
|
727
727
|
};
|
|
728
728
|
type TClassStudentStatisticGroupByMonth = {
|
|
@@ -1170,6 +1170,8 @@ type TClassStatisticGroupByMonthRes = {
|
|
|
1170
1170
|
totalCompletedHours: number;
|
|
1171
1171
|
totalCompleted: number;
|
|
1172
1172
|
totalCompletedTuition: number;
|
|
1173
|
+
totalPaidFee: number;
|
|
1174
|
+
totalUnpaidFee: number;
|
|
1173
1175
|
}[];
|
|
1174
1176
|
type TClassStudentStatisticGroupByMonthRes = {
|
|
1175
1177
|
month: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -655,7 +655,7 @@ type TLessonCheckOverlap = {
|
|
|
655
655
|
extendLessonTimes?: TExtendLessonTimesDTO[];
|
|
656
656
|
};
|
|
657
657
|
type TCLassStatistic = {
|
|
658
|
-
classId
|
|
658
|
+
classId?: string;
|
|
659
659
|
startTime?: string;
|
|
660
660
|
endTime?: string;
|
|
661
661
|
};
|
|
@@ -722,7 +722,7 @@ type TProposedLearningStudentDetail = {
|
|
|
722
722
|
id: string;
|
|
723
723
|
};
|
|
724
724
|
type TClassStatisticGroupByMonth = {
|
|
725
|
-
classId
|
|
725
|
+
classId?: string;
|
|
726
726
|
numberOfYear: number;
|
|
727
727
|
};
|
|
728
728
|
type TClassStudentStatisticGroupByMonth = {
|
|
@@ -1170,6 +1170,8 @@ type TClassStatisticGroupByMonthRes = {
|
|
|
1170
1170
|
totalCompletedHours: number;
|
|
1171
1171
|
totalCompleted: number;
|
|
1172
1172
|
totalCompletedTuition: number;
|
|
1173
|
+
totalPaidFee: number;
|
|
1174
|
+
totalUnpaidFee: number;
|
|
1173
1175
|
}[];
|
|
1174
1176
|
type TClassStudentStatisticGroupByMonthRes = {
|
|
1175
1177
|
month: number;
|