change user to uuid

This commit is contained in:
Julian Krauser 2025-01-29 08:53:49 +01:00
parent 07f8e2dbcb
commit f89483f878
46 changed files with 146 additions and 151 deletions

View file

@ -3,7 +3,7 @@ import { CommunicationViewModel } from "./communication.models";
import { MembershipViewModel } from "./membership.models";
export interface MemberViewModel {
id: number;
id: string;
salutation: SalutationViewModel;
firstname: string;
lastname: string;
@ -18,7 +18,7 @@ export interface MemberViewModel {
}
export interface MemberStatisticsViewModel {
id: number;
id: string;
salutation: string;
firstname: string;
lastname: string;

View file

@ -12,7 +12,7 @@ export interface MembershipStatisticsViewModel {
durationInYears: string;
status: string;
statusId: number;
memberId: number;
memberId: string;
memberSalutation: string;
memberFirstname: string;
memberLastname: string;

View file

@ -2,6 +2,6 @@ import { MemberViewModel } from "../member/member.models";
export interface NewsletterRecipientsViewModel {
newsletterId: number;
memberId: number;
memberId: string;
member: MemberViewModel;
}

View file

@ -1,7 +1,5 @@
import { MemberViewModel } from "../member/member.models";
export interface ProtocolPresenceViewModel {
memberId: number;
memberId: string;
absent: boolean;
excused: boolean;
protocolId: number;

View file

@ -2,7 +2,7 @@ import { PermissionObject } from "../../../type/permissionTypes";
import { RoleViewModel } from "./role.models";
export interface UserViewModel {
id: number;
id: string;
username: string;
mail: string;
firstname: string;