校园商户

This commit is contained in:
liu
2026-06-17 09:13:49 +08:00
parent 86be1c230e
commit 254823e308
50 changed files with 2186 additions and 40 deletions
+13
View File
@@ -0,0 +1,13 @@
export default interface IPrinter {
id?: number;
merchant_id?: number;
name?: string;
brand?: string;
model?: string;
device_no?: string;
secret_key?: string;
status?: number;
config?: Record<string, unknown>;
created_at?: string;
updated_at?: string;
}