1 Star 0 Fork 0

lrobin / dl-lab

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
delete.go 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
lrobin 提交于 2023-05-25 20:20 . Add id-generator and operatorID
// Copyright 2023 Leo <lipf160627@163.com>. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package model
import "github.com/go-playground/validator/v10"
type DeleteRequest struct {
OperatorID uint `json:"operatorId" validate:"required"`
ID uint `json:"id" validate:"required"`
}
type DeleteResponse struct {
Message string `json:"message" validate:"required"`
}
func (r *DeleteRequest) Validate(v *validator.Validate) error {
return v.Struct(r)
}
func (r *DeleteResponse) Validate(v *validator.Validate) error {
return v.Struct(r)
}
Go
1
https://gitee.com/lrobin/dl-lab.git
git@gitee.com:lrobin/dl-lab.git
lrobin
dl-lab
dl-lab
v1.0.28

搜索帮助