fix admin voting

- fix detail publish voting
This commit is contained in:
2025-03-24 13:53:57 +08:00
parent 5a220528d2
commit c0f35a4c96
15 changed files with 577 additions and 97 deletions

View File

@@ -21,3 +21,11 @@ export interface MODEL_NEW_DEFAULT_MASTER {
updatedAt: Date;
}
export interface IDefaultMaster {
id: string;
name: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
}