perf: 支持课程补录
This commit is contained in:
@@ -62,6 +62,8 @@ export type {
|
||||
AdminMemberUpcomingBooking,
|
||||
AdminMemberBookingStats,
|
||||
AdminMemberDetail,
|
||||
LessonSupplementRecord,
|
||||
CreateLessonSupplementDto,
|
||||
UpdateAdminMemberProfileDto,
|
||||
CardType,
|
||||
CreateCardTypeDto,
|
||||
|
||||
@@ -8,6 +8,8 @@ export type {
|
||||
AdminMemberUpcomingBooking,
|
||||
AdminMemberBookingStats,
|
||||
AdminMemberDetail,
|
||||
LessonSupplementRecord,
|
||||
CreateLessonSupplementDto,
|
||||
UpdateAdminMemberProfileDto,
|
||||
} from './user'
|
||||
export type {
|
||||
|
||||
@@ -95,3 +95,23 @@ export interface UpdateAdminMemberProfileDto {
|
||||
readonly nickname?: string
|
||||
readonly phone?: string | null
|
||||
}
|
||||
|
||||
/** Historical classes with no inferred attendance date. */
|
||||
export interface LessonSupplementRecord {
|
||||
readonly id: string
|
||||
readonly requestId: string
|
||||
readonly quantity: number
|
||||
readonly deductedTimes: number
|
||||
readonly cardName: string | null
|
||||
readonly remark: string | null
|
||||
readonly operatorName: string
|
||||
readonly createdAt: string
|
||||
readonly revokedAt: string | null
|
||||
}
|
||||
|
||||
export interface CreateLessonSupplementDto {
|
||||
readonly requestId: string
|
||||
readonly quantity: number
|
||||
readonly membershipId?: string
|
||||
readonly remark?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user