| 123456789101112131415161718192021222324252627282930 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package opsdev
- import (
- "dashoo.cn/opms_parent/app/model/opsdev/internal"
- )
- // OpsDeliveryProjectDelegate is the golang structure for table ops_delivery_project_delegate.
- type OpsDeliveryProjectDelegate internal.OpsDeliveryProjectDelegate
- // OpsDeliveryProjectDelegateListReq 查询项目授权人列表请求
- type OpsDeliveryProjectDelegateListReq struct {
- ProjectId int `json:"projectId" v:"required#项目ID不能为空"`
- }
- // OpsDeliveryProjectDelegateAddReq 添加授权人请求
- type OpsDeliveryProjectDelegateAddReq struct {
- ProjectId int `json:"projectId" v:"required#项目ID不能为空"`
- ProjectName string `json:"projectName"`
- UserId int `json:"userId" v:"required#被授权人ID不能为空"`
- UserName string `json:"userName" v:"required#被授权人姓名不能为空"`
- }
- // OpsDeliveryProjectDelegateDeleteReq 删除授权人请求
- type OpsDeliveryProjectDelegateDeleteReq struct {
- Id int `json:"id" v:"required#ID不能为空"`
- }
|