feat: 批量转移服务器给其他用户

This commit is contained in:
naiba
2025-06-16 23:46:36 +08:00
parent ed5aaabb18
commit bce7fdd547
4 changed files with 66 additions and 2 deletions

View File

@@ -53,3 +53,8 @@ type ServiceResponse struct {
Services map[uint64]ServiceResponseItem `json:"services,omitempty"`
CycleTransferStats map[uint64]CycleTransferStats `json:"cycle_transfer_stats,omitempty"`
}
type BatchMoveServerForm struct {
Ids []uint64 `json:"ids,omitempty" validate:"required"`
ToUser uint64 `json:"to_user,omitempty" validate:"required"`
}