feat: add producer account management

This commit is contained in:
2026-08-04 15:21:39 +08:00
parent fb59e80fd0
commit 402f050b17
21 changed files with 223 additions and 36 deletions

View File

@@ -11,6 +11,7 @@ func TestPlatformModelTableNames(t *testing.T) {
{name: "account", table: &PlatformAccount{}, want: "platform_account"},
{name: "role", table: &PlatformRole{}, want: "platform_role"},
{name: "role menu", table: &PlatformRoleMenu{}, want: "platform_role_menu"},
{name: "producer account", table: &ProducerAccount{}, want: "producer_account"},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {