新增通道列表查询页面

This commit is contained in:
2025-04-28 17:41:54 +08:00
parent b20ec85db9
commit b44888a6d7
16 changed files with 290 additions and 117 deletions

View File

@@ -1,5 +1,3 @@
import ResourcesPage from '@/app/admin/resources/page'
export type User = {
id: number
admin_id: number
@@ -106,3 +104,22 @@ export type Refund = {
created_at: Date
updated_at: Date
}
export type Channel = {
id: number
user_id: number
proxy_id: number
node_id: number
proxy_host: string
proxy_port: number
user_host: string
node_host: string
auth_ip: boolean
auth_pass: boolean
protocol: number
username: string
password: string
expiration: Date
created_at: Date
updated_at: Date
}