调整列表字段和枚举值转换

This commit is contained in:
Eamon
2026-01-05 09:14:41 +08:00
parent a27e856f07
commit 054b8954c4
23 changed files with 571 additions and 222 deletions

15
src/models/channel.ts Normal file
View File

@@ -0,0 +1,15 @@
export type Channel = {
id: number
batch_no: string
filter_prov: string
filter_city: string
filter_isp: string
host: string
port: string
whitelists: string
username: string
password: string
created_at: Date
updated_at: Date
expired_at: Date
}