From a4e4a2735010dec17afba1440ad0c6b5d7262e9e Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Fri, 29 Nov 2024 17:14:02 +0800 Subject: [PATCH] uint ->int --- app/http/entities/backend/cmd.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/http/entities/backend/cmd.go b/app/http/entities/backend/cmd.go index 3e0392f..9f9d207 100644 --- a/app/http/entities/backend/cmd.go +++ b/app/http/entities/backend/cmd.go @@ -9,12 +9,14 @@ import ( ) type CmdListRequest struct { - Page int `json:"page" validate:"required" form:"page" example:"1"` - Limit int `json:"limit" validate:"required" form:"limit" example:"10"` - CmdName string `json:"cmd_name" form:"cmd_name" example:"155555555"` - Status int `json:"status" form:"status" example:"1"` - ExecuteType int `json:"execute_type" form:"execute_type" example:"46516"` - CmdIds []string `json:"cmd_id"` + Page int `json:"page" validate:"required" form:"page" example:"1"` + Limit int `json:"limit" validate:"required" form:"limit" example:"10"` + CmdName string `json:"cmd_name" form:"cmd_name" example:"155555555"` + Status int `json:"status" form:"status" example:"1"` + ExecuteType int `json:"execute_type" form:"execute_type" example:"46516"` + ExecuteRead string `json:"execute_read"` + ExecuteWrite string `json:"execute_write"` + CmdIds []string `json:"cmd_id"` } type CmdInfoRequest struct {