refactor: input fields (branch, user)

This commit is contained in:
Methapon Metanipat 2024-09-12 09:48:56 +07:00
parent 0570956850
commit 8a745fefa8
4 changed files with 23 additions and 3 deletions

View file

@ -59,6 +59,10 @@ type UserCreate = {
username: string;
citizenId: string;
citizenIssue: Date;
citizenExpire?: Date | null;
namePrefix?: string | null;
firstName: string;
firstNameEN: string;
@ -111,6 +115,10 @@ type UserUpdate = {
userType?: UserType;
userRole?: string;
citizenId?: string;
citizenIssue?: Date;
citizenExpire?: Date | null;
namePrefix?: string | null;
firstName?: string;
firstNameEN?: string;