@themoment-team/datagsm-shared 20260529.0.0-33
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/Kotlin-DateTime-library-kotlinx-datetime.js +73 -0
- package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -0
- package/datagsm-shared.d.ts +619 -0
- package/datagsm-shared.js +3201 -0
- package/datagsm-shared.js.map +1 -0
- package/kotlin-kotlin-stdlib.js +6589 -0
- package/kotlin-kotlin-stdlib.js.map +1 -0
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js +15 -0
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core.js +1781 -0
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json.js +15 -0
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -0
- package/package.json +16 -0
|
@@ -0,0 +1,619 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.dto.internal {
|
|
4
|
+
class ClubSummaryDto {
|
|
5
|
+
constructor(id: bigint, name: string, type: team.themoment.datagsm.shared.domain.club.entity.constant.ClubType);
|
|
6
|
+
get id(): bigint;
|
|
7
|
+
get name(): string;
|
|
8
|
+
get type(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubType;
|
|
9
|
+
copy(id?: bigint, name?: string, type?: team.themoment.datagsm.shared.domain.club.entity.constant.ClubType): team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto;
|
|
10
|
+
toString(): string;
|
|
11
|
+
hashCode(): number;
|
|
12
|
+
equals(other: Nullable<any>): boolean;
|
|
13
|
+
}
|
|
14
|
+
namespace ClubSummaryDto {
|
|
15
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16
|
+
namespace $metadata$ {
|
|
17
|
+
const constructor: abstract new () => ClubSummaryDto;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.dto.response {
|
|
22
|
+
class ClubListResDto {
|
|
23
|
+
constructor(totalPages: number, totalElements: bigint, clubs: Array<team.themoment.datagsm.shared.domain.club.dto.response.ClubResDto>);
|
|
24
|
+
get totalPages(): number;
|
|
25
|
+
get totalElements(): bigint;
|
|
26
|
+
get clubs(): Array<team.themoment.datagsm.shared.domain.club.dto.response.ClubResDto>;
|
|
27
|
+
copy(totalPages?: number, totalElements?: bigint, clubs?: Array<team.themoment.datagsm.shared.domain.club.dto.response.ClubResDto>): team.themoment.datagsm.shared.domain.club.dto.response.ClubListResDto;
|
|
28
|
+
toString(): string;
|
|
29
|
+
hashCode(): number;
|
|
30
|
+
equals(other: Nullable<any>): boolean;
|
|
31
|
+
}
|
|
32
|
+
namespace ClubListResDto {
|
|
33
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
34
|
+
namespace $metadata$ {
|
|
35
|
+
const constructor: abstract new () => ClubListResDto;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.dto.response {
|
|
40
|
+
class ClubResDto {
|
|
41
|
+
constructor(id: bigint, name: string, type: team.themoment.datagsm.shared.domain.club.entity.constant.ClubType, leader: Nullable<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>, participants: Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>, foundedYear: number, status: team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus, abolishedYear: Nullable<number>);
|
|
42
|
+
get id(): bigint;
|
|
43
|
+
get name(): string;
|
|
44
|
+
get type(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubType;
|
|
45
|
+
get leader(): Nullable<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>;
|
|
46
|
+
get participants(): Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>;
|
|
47
|
+
get foundedYear(): number;
|
|
48
|
+
get status(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus;
|
|
49
|
+
get abolishedYear(): Nullable<number>;
|
|
50
|
+
copy(id?: bigint, name?: string, type?: team.themoment.datagsm.shared.domain.club.entity.constant.ClubType, leader?: Nullable<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>, participants?: Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>, foundedYear?: number, status?: team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus, abolishedYear?: Nullable<number>): team.themoment.datagsm.shared.domain.club.dto.response.ClubResDto;
|
|
51
|
+
toString(): string;
|
|
52
|
+
hashCode(): number;
|
|
53
|
+
equals(other: Nullable<any>): boolean;
|
|
54
|
+
}
|
|
55
|
+
namespace ClubResDto {
|
|
56
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
57
|
+
namespace $metadata$ {
|
|
58
|
+
const constructor: abstract new () => ClubResDto;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.entity.constant {
|
|
63
|
+
abstract class ClubSortBy {
|
|
64
|
+
private constructor();
|
|
65
|
+
static get ID(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy & {
|
|
66
|
+
get name(): "ID";
|
|
67
|
+
get ordinal(): 0;
|
|
68
|
+
};
|
|
69
|
+
static get NAME(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy & {
|
|
70
|
+
get name(): "NAME";
|
|
71
|
+
get ordinal(): 1;
|
|
72
|
+
};
|
|
73
|
+
static get TYPE(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy & {
|
|
74
|
+
get name(): "TYPE";
|
|
75
|
+
get ordinal(): 2;
|
|
76
|
+
};
|
|
77
|
+
static get FOUNDED_YEAR(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy & {
|
|
78
|
+
get name(): "FOUNDED_YEAR";
|
|
79
|
+
get ordinal(): 3;
|
|
80
|
+
};
|
|
81
|
+
static get STATUS(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy & {
|
|
82
|
+
get name(): "STATUS";
|
|
83
|
+
get ordinal(): 4;
|
|
84
|
+
};
|
|
85
|
+
get name(): "ID" | "NAME" | "TYPE" | "FOUNDED_YEAR" | "STATUS";
|
|
86
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
87
|
+
static values(): Array<team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy>;
|
|
88
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.club.entity.constant.ClubSortBy;
|
|
89
|
+
}
|
|
90
|
+
namespace ClubSortBy {
|
|
91
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
92
|
+
namespace $metadata$ {
|
|
93
|
+
const constructor: abstract new () => ClubSortBy;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.entity.constant {
|
|
98
|
+
abstract class ClubStatus {
|
|
99
|
+
private constructor();
|
|
100
|
+
static get ACTIVE(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus & {
|
|
101
|
+
get name(): "ACTIVE";
|
|
102
|
+
get ordinal(): 0;
|
|
103
|
+
};
|
|
104
|
+
static get ABOLISHED(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus & {
|
|
105
|
+
get name(): "ABOLISHED";
|
|
106
|
+
get ordinal(): 1;
|
|
107
|
+
};
|
|
108
|
+
get name(): "ACTIVE" | "ABOLISHED";
|
|
109
|
+
get ordinal(): 0 | 1;
|
|
110
|
+
static values(): Array<team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus>;
|
|
111
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.club.entity.constant.ClubStatus;
|
|
112
|
+
}
|
|
113
|
+
namespace ClubStatus {
|
|
114
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
115
|
+
namespace $metadata$ {
|
|
116
|
+
const constructor: abstract new () => ClubStatus;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
export declare namespace team.themoment.datagsm.shared.domain.club.entity.constant {
|
|
121
|
+
abstract class ClubType {
|
|
122
|
+
private constructor();
|
|
123
|
+
static get MAJOR_CLUB(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubType & {
|
|
124
|
+
get name(): "MAJOR_CLUB";
|
|
125
|
+
get ordinal(): 0;
|
|
126
|
+
};
|
|
127
|
+
static get AUTONOMOUS_CLUB(): team.themoment.datagsm.shared.domain.club.entity.constant.ClubType & {
|
|
128
|
+
get name(): "AUTONOMOUS_CLUB";
|
|
129
|
+
get ordinal(): 1;
|
|
130
|
+
};
|
|
131
|
+
get name(): "MAJOR_CLUB" | "AUTONOMOUS_CLUB";
|
|
132
|
+
get ordinal(): 0 | 1;
|
|
133
|
+
static values(): Array<team.themoment.datagsm.shared.domain.club.entity.constant.ClubType>;
|
|
134
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.club.entity.constant.ClubType;
|
|
135
|
+
}
|
|
136
|
+
namespace ClubType {
|
|
137
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
138
|
+
namespace $metadata$ {
|
|
139
|
+
const constructor: abstract new () => ClubType;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.meal.response {
|
|
144
|
+
class MealInfoResDto {
|
|
145
|
+
constructor(mealId: string, schoolCode: string, schoolName: string, officeCode: string, officeName: string, mealDate: any/* kotlinx.datetime.LocalDate */, mealType: team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType, mealMenu: Array<string>, mealAllergyInfo: Nullable<Array<string>>, mealCalories: Nullable<string>, originInfo: Nullable<string>, nutritionInfo: Nullable<string>, mealServeCount: Nullable<number>);
|
|
146
|
+
get mealId(): string;
|
|
147
|
+
get schoolCode(): string;
|
|
148
|
+
get schoolName(): string;
|
|
149
|
+
get officeCode(): string;
|
|
150
|
+
get officeName(): string;
|
|
151
|
+
get mealDate(): any/* kotlinx.datetime.LocalDate */;
|
|
152
|
+
get mealType(): team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType;
|
|
153
|
+
get mealMenu(): Array<string>;
|
|
154
|
+
get mealAllergyInfo(): Nullable<Array<string>>;
|
|
155
|
+
get mealCalories(): Nullable<string>;
|
|
156
|
+
get originInfo(): Nullable<string>;
|
|
157
|
+
get nutritionInfo(): Nullable<string>;
|
|
158
|
+
get mealServeCount(): Nullable<number>;
|
|
159
|
+
copy(mealId?: string, schoolCode?: string, schoolName?: string, officeCode?: string, officeName?: string, mealDate?: any/* kotlinx.datetime.LocalDate */, mealType?: team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType, mealMenu?: Array<string>, mealAllergyInfo?: Nullable<Array<string>>, mealCalories?: Nullable<string>, originInfo?: Nullable<string>, nutritionInfo?: Nullable<string>, mealServeCount?: Nullable<number>): team.themoment.datagsm.shared.domain.neis.dto.meal.response.MealInfoResDto;
|
|
160
|
+
toString(): string;
|
|
161
|
+
hashCode(): number;
|
|
162
|
+
equals(other: Nullable<any>): boolean;
|
|
163
|
+
}
|
|
164
|
+
namespace MealInfoResDto {
|
|
165
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
166
|
+
namespace $metadata$ {
|
|
167
|
+
const constructor: abstract new () => MealInfoResDto;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.meal.response {
|
|
172
|
+
class MealResDto {
|
|
173
|
+
constructor(meals: Array<team.themoment.datagsm.shared.domain.neis.dto.meal.response.MealInfoResDto>);
|
|
174
|
+
get meals(): Array<team.themoment.datagsm.shared.domain.neis.dto.meal.response.MealInfoResDto>;
|
|
175
|
+
copy(meals?: Array<team.themoment.datagsm.shared.domain.neis.dto.meal.response.MealInfoResDto>): team.themoment.datagsm.shared.domain.neis.dto.meal.response.MealResDto;
|
|
176
|
+
toString(): string;
|
|
177
|
+
hashCode(): number;
|
|
178
|
+
equals(other: Nullable<any>): boolean;
|
|
179
|
+
}
|
|
180
|
+
namespace MealResDto {
|
|
181
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
182
|
+
namespace $metadata$ {
|
|
183
|
+
const constructor: abstract new () => MealResDto;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.schedule.response {
|
|
188
|
+
class ScheduleInfoResDto {
|
|
189
|
+
constructor(scheduleId: string, schoolCode: string, schoolName: string, officeCode: string, officeName: string, scheduleDate: any/* kotlinx.datetime.LocalDate */, academicYear: string, eventName: string, eventContent: Nullable<string>, dayCategory: Nullable<string>, schoolCourseType: Nullable<string>, dayNightType: Nullable<string>, targetGrades: Array<number>);
|
|
190
|
+
get scheduleId(): string;
|
|
191
|
+
get schoolCode(): string;
|
|
192
|
+
get schoolName(): string;
|
|
193
|
+
get officeCode(): string;
|
|
194
|
+
get officeName(): string;
|
|
195
|
+
get scheduleDate(): any/* kotlinx.datetime.LocalDate */;
|
|
196
|
+
get academicYear(): string;
|
|
197
|
+
get eventName(): string;
|
|
198
|
+
get eventContent(): Nullable<string>;
|
|
199
|
+
get dayCategory(): Nullable<string>;
|
|
200
|
+
get schoolCourseType(): Nullable<string>;
|
|
201
|
+
get dayNightType(): Nullable<string>;
|
|
202
|
+
get targetGrades(): Array<number>;
|
|
203
|
+
copy(scheduleId?: string, schoolCode?: string, schoolName?: string, officeCode?: string, officeName?: string, scheduleDate?: any/* kotlinx.datetime.LocalDate */, academicYear?: string, eventName?: string, eventContent?: Nullable<string>, dayCategory?: Nullable<string>, schoolCourseType?: Nullable<string>, dayNightType?: Nullable<string>, targetGrades?: Array<number>): team.themoment.datagsm.shared.domain.neis.dto.schedule.response.ScheduleInfoResDto;
|
|
204
|
+
toString(): string;
|
|
205
|
+
hashCode(): number;
|
|
206
|
+
equals(other: Nullable<any>): boolean;
|
|
207
|
+
}
|
|
208
|
+
namespace ScheduleInfoResDto {
|
|
209
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
210
|
+
namespace $metadata$ {
|
|
211
|
+
const constructor: abstract new () => ScheduleInfoResDto;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.schedule.response {
|
|
216
|
+
class ScheduleResDto {
|
|
217
|
+
constructor(schedules: Array<team.themoment.datagsm.shared.domain.neis.dto.schedule.response.ScheduleInfoResDto>);
|
|
218
|
+
get schedules(): Array<team.themoment.datagsm.shared.domain.neis.dto.schedule.response.ScheduleInfoResDto>;
|
|
219
|
+
copy(schedules?: Array<team.themoment.datagsm.shared.domain.neis.dto.schedule.response.ScheduleInfoResDto>): team.themoment.datagsm.shared.domain.neis.dto.schedule.response.ScheduleResDto;
|
|
220
|
+
toString(): string;
|
|
221
|
+
hashCode(): number;
|
|
222
|
+
equals(other: Nullable<any>): boolean;
|
|
223
|
+
}
|
|
224
|
+
namespace ScheduleResDto {
|
|
225
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
226
|
+
namespace $metadata$ {
|
|
227
|
+
const constructor: abstract new () => ScheduleResDto;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.timetable.response {
|
|
232
|
+
class TimetableInfoResDto {
|
|
233
|
+
constructor(timetableId: string, schoolCode: string, schoolName: string, officeCode: string, officeName: string, timetableDate: any/* kotlinx.datetime.LocalDate */, academicYear: string, semester: Nullable<string>, grade: number, classNum: number, period: number, subject: Nullable<string>);
|
|
234
|
+
get timetableId(): string;
|
|
235
|
+
get schoolCode(): string;
|
|
236
|
+
get schoolName(): string;
|
|
237
|
+
get officeCode(): string;
|
|
238
|
+
get officeName(): string;
|
|
239
|
+
get timetableDate(): any/* kotlinx.datetime.LocalDate */;
|
|
240
|
+
get academicYear(): string;
|
|
241
|
+
get semester(): Nullable<string>;
|
|
242
|
+
get grade(): number;
|
|
243
|
+
get classNum(): number;
|
|
244
|
+
get period(): number;
|
|
245
|
+
get subject(): Nullable<string>;
|
|
246
|
+
copy(timetableId?: string, schoolCode?: string, schoolName?: string, officeCode?: string, officeName?: string, timetableDate?: any/* kotlinx.datetime.LocalDate */, academicYear?: string, semester?: Nullable<string>, grade?: number, classNum?: number, period?: number, subject?: Nullable<string>): team.themoment.datagsm.shared.domain.neis.dto.timetable.response.TimetableInfoResDto;
|
|
247
|
+
toString(): string;
|
|
248
|
+
hashCode(): number;
|
|
249
|
+
equals(other: Nullable<any>): boolean;
|
|
250
|
+
}
|
|
251
|
+
namespace TimetableInfoResDto {
|
|
252
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
253
|
+
namespace $metadata$ {
|
|
254
|
+
const constructor: abstract new () => TimetableInfoResDto;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.dto.timetable.response {
|
|
259
|
+
class TimetableResDto {
|
|
260
|
+
constructor(timetables: Array<team.themoment.datagsm.shared.domain.neis.dto.timetable.response.TimetableInfoResDto>);
|
|
261
|
+
get timetables(): Array<team.themoment.datagsm.shared.domain.neis.dto.timetable.response.TimetableInfoResDto>;
|
|
262
|
+
copy(timetables?: Array<team.themoment.datagsm.shared.domain.neis.dto.timetable.response.TimetableInfoResDto>): team.themoment.datagsm.shared.domain.neis.dto.timetable.response.TimetableResDto;
|
|
263
|
+
toString(): string;
|
|
264
|
+
hashCode(): number;
|
|
265
|
+
equals(other: Nullable<any>): boolean;
|
|
266
|
+
}
|
|
267
|
+
namespace TimetableResDto {
|
|
268
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
269
|
+
namespace $metadata$ {
|
|
270
|
+
const constructor: abstract new () => TimetableResDto;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
export declare namespace team.themoment.datagsm.shared.domain.neis.meal.entity.constant {
|
|
275
|
+
abstract class MealType {
|
|
276
|
+
private constructor();
|
|
277
|
+
static get BREAKFAST(): team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType & {
|
|
278
|
+
get name(): "BREAKFAST";
|
|
279
|
+
get ordinal(): 0;
|
|
280
|
+
};
|
|
281
|
+
static get LUNCH(): team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType & {
|
|
282
|
+
get name(): "LUNCH";
|
|
283
|
+
get ordinal(): 1;
|
|
284
|
+
};
|
|
285
|
+
static get DINNER(): team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType & {
|
|
286
|
+
get name(): "DINNER";
|
|
287
|
+
get ordinal(): 2;
|
|
288
|
+
};
|
|
289
|
+
get name(): "BREAKFAST" | "LUNCH" | "DINNER";
|
|
290
|
+
get ordinal(): 0 | 1 | 2;
|
|
291
|
+
static values(): Array<team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType>;
|
|
292
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.neis.meal.entity.constant.MealType;
|
|
293
|
+
}
|
|
294
|
+
namespace MealType {
|
|
295
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
296
|
+
namespace $metadata$ {
|
|
297
|
+
const constructor: abstract new () => MealType;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
export declare namespace team.themoment.datagsm.shared.domain.project.dto.response {
|
|
302
|
+
class ProjectListResDto {
|
|
303
|
+
constructor(totalPages: number, totalElements: bigint, projects: Array<team.themoment.datagsm.shared.domain.project.dto.response.ProjectResDto>);
|
|
304
|
+
get totalPages(): number;
|
|
305
|
+
get totalElements(): bigint;
|
|
306
|
+
get projects(): Array<team.themoment.datagsm.shared.domain.project.dto.response.ProjectResDto>;
|
|
307
|
+
copy(totalPages?: number, totalElements?: bigint, projects?: Array<team.themoment.datagsm.shared.domain.project.dto.response.ProjectResDto>): team.themoment.datagsm.shared.domain.project.dto.response.ProjectListResDto;
|
|
308
|
+
toString(): string;
|
|
309
|
+
hashCode(): number;
|
|
310
|
+
equals(other: Nullable<any>): boolean;
|
|
311
|
+
}
|
|
312
|
+
namespace ProjectListResDto {
|
|
313
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
314
|
+
namespace $metadata$ {
|
|
315
|
+
const constructor: abstract new () => ProjectListResDto;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
export declare namespace team.themoment.datagsm.shared.domain.project.dto.response {
|
|
320
|
+
class ProjectResDto {
|
|
321
|
+
constructor(id: bigint, name: string, description: string, startYear: number, endYear: Nullable<number>, status: team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus, club: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, participants: Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>);
|
|
322
|
+
get id(): bigint;
|
|
323
|
+
get name(): string;
|
|
324
|
+
get description(): string;
|
|
325
|
+
get startYear(): number;
|
|
326
|
+
get endYear(): Nullable<number>;
|
|
327
|
+
get status(): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus;
|
|
328
|
+
get club(): Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>;
|
|
329
|
+
get participants(): Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>;
|
|
330
|
+
copy(id?: bigint, name?: string, description?: string, startYear?: number, endYear?: Nullable<number>, status?: team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus, club?: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, participants?: Array<team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto>): team.themoment.datagsm.shared.domain.project.dto.response.ProjectResDto;
|
|
331
|
+
toString(): string;
|
|
332
|
+
hashCode(): number;
|
|
333
|
+
equals(other: Nullable<any>): boolean;
|
|
334
|
+
}
|
|
335
|
+
namespace ProjectResDto {
|
|
336
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
337
|
+
namespace $metadata$ {
|
|
338
|
+
const constructor: abstract new () => ProjectResDto;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
export declare namespace team.themoment.datagsm.shared.domain.project.entity.constant {
|
|
343
|
+
abstract class ProjectSortBy {
|
|
344
|
+
private constructor();
|
|
345
|
+
static get ID(): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectSortBy & {
|
|
346
|
+
get name(): "ID";
|
|
347
|
+
get ordinal(): 0;
|
|
348
|
+
};
|
|
349
|
+
static get NAME(): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectSortBy & {
|
|
350
|
+
get name(): "NAME";
|
|
351
|
+
get ordinal(): 1;
|
|
352
|
+
};
|
|
353
|
+
get name(): "ID" | "NAME";
|
|
354
|
+
get ordinal(): 0 | 1;
|
|
355
|
+
static values(): Array<team.themoment.datagsm.shared.domain.project.entity.constant.ProjectSortBy>;
|
|
356
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectSortBy;
|
|
357
|
+
}
|
|
358
|
+
namespace ProjectSortBy {
|
|
359
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
360
|
+
namespace $metadata$ {
|
|
361
|
+
const constructor: abstract new () => ProjectSortBy;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
export declare namespace team.themoment.datagsm.shared.domain.project.entity.constant {
|
|
366
|
+
abstract class ProjectStatus {
|
|
367
|
+
private constructor();
|
|
368
|
+
static get ACTIVE(): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus & {
|
|
369
|
+
get name(): "ACTIVE";
|
|
370
|
+
get ordinal(): 0;
|
|
371
|
+
};
|
|
372
|
+
static get ENDED(): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus & {
|
|
373
|
+
get name(): "ENDED";
|
|
374
|
+
get ordinal(): 1;
|
|
375
|
+
};
|
|
376
|
+
get name(): "ACTIVE" | "ENDED";
|
|
377
|
+
get ordinal(): 0 | 1;
|
|
378
|
+
static values(): Array<team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus>;
|
|
379
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.project.entity.constant.ProjectStatus;
|
|
380
|
+
}
|
|
381
|
+
namespace ProjectStatus {
|
|
382
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
383
|
+
namespace $metadata$ {
|
|
384
|
+
const constructor: abstract new () => ProjectStatus;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.dto.internal {
|
|
389
|
+
class ParticipantInfoDto {
|
|
390
|
+
constructor(id: bigint, name: string, email: string, studentNumber: Nullable<number>, major: Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>, sex: team.themoment.datagsm.shared.domain.student.entity.constant.Sex);
|
|
391
|
+
get id(): bigint;
|
|
392
|
+
get name(): string;
|
|
393
|
+
get email(): string;
|
|
394
|
+
get studentNumber(): Nullable<number>;
|
|
395
|
+
get major(): Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>;
|
|
396
|
+
get sex(): team.themoment.datagsm.shared.domain.student.entity.constant.Sex;
|
|
397
|
+
copy(id?: bigint, name?: string, email?: string, studentNumber?: Nullable<number>, major?: Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>, sex?: team.themoment.datagsm.shared.domain.student.entity.constant.Sex): team.themoment.datagsm.shared.domain.student.dto.internal.ParticipantInfoDto;
|
|
398
|
+
toString(): string;
|
|
399
|
+
hashCode(): number;
|
|
400
|
+
equals(other: Nullable<any>): boolean;
|
|
401
|
+
}
|
|
402
|
+
namespace ParticipantInfoDto {
|
|
403
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
404
|
+
namespace $metadata$ {
|
|
405
|
+
const constructor: abstract new () => ParticipantInfoDto;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.dto.response {
|
|
410
|
+
class GraduateStudentResDto {
|
|
411
|
+
constructor(graduatedCount: number);
|
|
412
|
+
get graduatedCount(): number;
|
|
413
|
+
copy(graduatedCount?: number): team.themoment.datagsm.shared.domain.student.dto.response.GraduateStudentResDto;
|
|
414
|
+
toString(): string;
|
|
415
|
+
hashCode(): number;
|
|
416
|
+
equals(other: Nullable<any>): boolean;
|
|
417
|
+
}
|
|
418
|
+
namespace GraduateStudentResDto {
|
|
419
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
420
|
+
namespace $metadata$ {
|
|
421
|
+
const constructor: abstract new () => GraduateStudentResDto;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.dto.response {
|
|
426
|
+
class StudentListResDto {
|
|
427
|
+
constructor(totalPages: number, totalElements: bigint, students: Array<team.themoment.datagsm.shared.domain.student.dto.response.StudentResDto>);
|
|
428
|
+
get totalPages(): number;
|
|
429
|
+
get totalElements(): bigint;
|
|
430
|
+
get students(): Array<team.themoment.datagsm.shared.domain.student.dto.response.StudentResDto>;
|
|
431
|
+
copy(totalPages?: number, totalElements?: bigint, students?: Array<team.themoment.datagsm.shared.domain.student.dto.response.StudentResDto>): team.themoment.datagsm.shared.domain.student.dto.response.StudentListResDto;
|
|
432
|
+
toString(): string;
|
|
433
|
+
hashCode(): number;
|
|
434
|
+
equals(other: Nullable<any>): boolean;
|
|
435
|
+
}
|
|
436
|
+
namespace StudentListResDto {
|
|
437
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
438
|
+
namespace $metadata$ {
|
|
439
|
+
const constructor: abstract new () => StudentListResDto;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.dto.response {
|
|
444
|
+
class StudentResDto {
|
|
445
|
+
constructor(id: bigint, name: string, sex: team.themoment.datagsm.shared.domain.student.entity.constant.Sex, email: string, grade: Nullable<number>, classNum: Nullable<number>, number: Nullable<number>, studentNumber: Nullable<number>, major: Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>, specialty: Nullable<string>, role: team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole, dormitoryFloor: Nullable<number>, dormitoryRoom: Nullable<number>, majorClub: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, autonomousClub: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, githubId: Nullable<string>, githubUrl: Nullable<string>);
|
|
446
|
+
get id(): bigint;
|
|
447
|
+
get name(): string;
|
|
448
|
+
get sex(): team.themoment.datagsm.shared.domain.student.entity.constant.Sex;
|
|
449
|
+
get email(): string;
|
|
450
|
+
get grade(): Nullable<number>;
|
|
451
|
+
get classNum(): Nullable<number>;
|
|
452
|
+
get number(): Nullable<number>;
|
|
453
|
+
get studentNumber(): Nullable<number>;
|
|
454
|
+
get major(): Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>;
|
|
455
|
+
get specialty(): Nullable<string>;
|
|
456
|
+
get role(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole;
|
|
457
|
+
get dormitoryFloor(): Nullable<number>;
|
|
458
|
+
get dormitoryRoom(): Nullable<number>;
|
|
459
|
+
get majorClub(): Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>;
|
|
460
|
+
get autonomousClub(): Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>;
|
|
461
|
+
get githubId(): Nullable<string>;
|
|
462
|
+
get githubUrl(): Nullable<string>;
|
|
463
|
+
copy(id?: bigint, name?: string, sex?: team.themoment.datagsm.shared.domain.student.entity.constant.Sex, email?: string, grade?: Nullable<number>, classNum?: Nullable<number>, number?: Nullable<number>, studentNumber?: Nullable<number>, major?: Nullable<team.themoment.datagsm.shared.domain.student.entity.constant.Major>, specialty?: Nullable<string>, role?: team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole, dormitoryFloor?: Nullable<number>, dormitoryRoom?: Nullable<number>, majorClub?: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, autonomousClub?: Nullable<team.themoment.datagsm.shared.domain.club.dto.internal.ClubSummaryDto>, githubId?: Nullable<string>, githubUrl?: Nullable<string>): team.themoment.datagsm.shared.domain.student.dto.response.StudentResDto;
|
|
464
|
+
toString(): string;
|
|
465
|
+
hashCode(): number;
|
|
466
|
+
equals(other: Nullable<any>): boolean;
|
|
467
|
+
}
|
|
468
|
+
namespace StudentResDto {
|
|
469
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
470
|
+
namespace $metadata$ {
|
|
471
|
+
const constructor: abstract new () => StudentResDto;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.entity.constant {
|
|
476
|
+
abstract class Major {
|
|
477
|
+
private constructor();
|
|
478
|
+
static get SW_DEVELOPMENT(): team.themoment.datagsm.shared.domain.student.entity.constant.Major & {
|
|
479
|
+
get name(): "SW_DEVELOPMENT";
|
|
480
|
+
get ordinal(): 0;
|
|
481
|
+
};
|
|
482
|
+
static get SMART_IOT(): team.themoment.datagsm.shared.domain.student.entity.constant.Major & {
|
|
483
|
+
get name(): "SMART_IOT";
|
|
484
|
+
get ordinal(): 1;
|
|
485
|
+
};
|
|
486
|
+
static get AI(): team.themoment.datagsm.shared.domain.student.entity.constant.Major & {
|
|
487
|
+
get name(): "AI";
|
|
488
|
+
get ordinal(): 2;
|
|
489
|
+
};
|
|
490
|
+
get name(): "SW_DEVELOPMENT" | "SMART_IOT" | "AI";
|
|
491
|
+
get ordinal(): 0 | 1 | 2;
|
|
492
|
+
static values(): Array<team.themoment.datagsm.shared.domain.student.entity.constant.Major>;
|
|
493
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.student.entity.constant.Major;
|
|
494
|
+
}
|
|
495
|
+
namespace Major {
|
|
496
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
497
|
+
namespace $metadata$ {
|
|
498
|
+
const constructor: abstract new () => Major;
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.entity.constant {
|
|
503
|
+
abstract class Sex {
|
|
504
|
+
private constructor();
|
|
505
|
+
static get MAN(): team.themoment.datagsm.shared.domain.student.entity.constant.Sex & {
|
|
506
|
+
get name(): "MAN";
|
|
507
|
+
get ordinal(): 0;
|
|
508
|
+
};
|
|
509
|
+
static get WOMAN(): team.themoment.datagsm.shared.domain.student.entity.constant.Sex & {
|
|
510
|
+
get name(): "WOMAN";
|
|
511
|
+
get ordinal(): 1;
|
|
512
|
+
};
|
|
513
|
+
get name(): "MAN" | "WOMAN";
|
|
514
|
+
get ordinal(): 0 | 1;
|
|
515
|
+
static values(): Array<team.themoment.datagsm.shared.domain.student.entity.constant.Sex>;
|
|
516
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.student.entity.constant.Sex;
|
|
517
|
+
}
|
|
518
|
+
namespace Sex {
|
|
519
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
520
|
+
namespace $metadata$ {
|
|
521
|
+
const constructor: abstract new () => Sex;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.entity.constant {
|
|
526
|
+
abstract class StudentRole {
|
|
527
|
+
private constructor();
|
|
528
|
+
static get STUDENT_COUNCIL(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole & {
|
|
529
|
+
get name(): "STUDENT_COUNCIL";
|
|
530
|
+
get ordinal(): 0;
|
|
531
|
+
};
|
|
532
|
+
static get DORMITORY_MANAGER(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole & {
|
|
533
|
+
get name(): "DORMITORY_MANAGER";
|
|
534
|
+
get ordinal(): 1;
|
|
535
|
+
};
|
|
536
|
+
static get GENERAL_STUDENT(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole & {
|
|
537
|
+
get name(): "GENERAL_STUDENT";
|
|
538
|
+
get ordinal(): 2;
|
|
539
|
+
};
|
|
540
|
+
static get GRADUATE(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole & {
|
|
541
|
+
get name(): "GRADUATE";
|
|
542
|
+
get ordinal(): 3;
|
|
543
|
+
};
|
|
544
|
+
static get WITHDRAWN(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole & {
|
|
545
|
+
get name(): "WITHDRAWN";
|
|
546
|
+
get ordinal(): 4;
|
|
547
|
+
};
|
|
548
|
+
get name(): "STUDENT_COUNCIL" | "DORMITORY_MANAGER" | "GENERAL_STUDENT" | "GRADUATE" | "WITHDRAWN";
|
|
549
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
550
|
+
static values(): Array<team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole>;
|
|
551
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.student.entity.constant.StudentRole;
|
|
552
|
+
}
|
|
553
|
+
namespace StudentRole {
|
|
554
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
555
|
+
namespace $metadata$ {
|
|
556
|
+
const constructor: abstract new () => StudentRole;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
export declare namespace team.themoment.datagsm.shared.domain.student.entity.constant {
|
|
561
|
+
abstract class StudentSortBy {
|
|
562
|
+
private constructor();
|
|
563
|
+
static get ID(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
564
|
+
get name(): "ID";
|
|
565
|
+
get ordinal(): 0;
|
|
566
|
+
};
|
|
567
|
+
static get NAME(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
568
|
+
get name(): "NAME";
|
|
569
|
+
get ordinal(): 1;
|
|
570
|
+
};
|
|
571
|
+
static get EMAIL(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
572
|
+
get name(): "EMAIL";
|
|
573
|
+
get ordinal(): 2;
|
|
574
|
+
};
|
|
575
|
+
static get STUDENT_NUMBER(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
576
|
+
get name(): "STUDENT_NUMBER";
|
|
577
|
+
get ordinal(): 3;
|
|
578
|
+
};
|
|
579
|
+
static get GRADE(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
580
|
+
get name(): "GRADE";
|
|
581
|
+
get ordinal(): 4;
|
|
582
|
+
};
|
|
583
|
+
static get CLASS_NUM(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
584
|
+
get name(): "CLASS_NUM";
|
|
585
|
+
get ordinal(): 5;
|
|
586
|
+
};
|
|
587
|
+
static get NUMBER(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
588
|
+
get name(): "NUMBER";
|
|
589
|
+
get ordinal(): 6;
|
|
590
|
+
};
|
|
591
|
+
static get MAJOR(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
592
|
+
get name(): "MAJOR";
|
|
593
|
+
get ordinal(): 7;
|
|
594
|
+
};
|
|
595
|
+
static get ROLE(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
596
|
+
get name(): "ROLE";
|
|
597
|
+
get ordinal(): 8;
|
|
598
|
+
};
|
|
599
|
+
static get SEX(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
600
|
+
get name(): "SEX";
|
|
601
|
+
get ordinal(): 9;
|
|
602
|
+
};
|
|
603
|
+
static get DORMITORY_ROOM(): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy & {
|
|
604
|
+
get name(): "DORMITORY_ROOM";
|
|
605
|
+
get ordinal(): 10;
|
|
606
|
+
};
|
|
607
|
+
get name(): "ID" | "NAME" | "EMAIL" | "STUDENT_NUMBER" | "GRADE" | "CLASS_NUM" | "NUMBER" | "MAJOR" | "ROLE" | "SEX" | "DORMITORY_ROOM";
|
|
608
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
609
|
+
static values(): Array<team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy>;
|
|
610
|
+
static valueOf(value: string): team.themoment.datagsm.shared.domain.student.entity.constant.StudentSortBy;
|
|
611
|
+
}
|
|
612
|
+
namespace StudentSortBy {
|
|
613
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
614
|
+
namespace $metadata$ {
|
|
615
|
+
const constructor: abstract new () => StudentSortBy;
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
export as namespace team_themoment_datagsm_shared;
|