rts-sim-testing-service/dto/publishedGi.go

16 lines
340 B
Go
Raw Normal View History

2023-07-18 17:19:03 +08:00
package dto
type PublishedGiReqDto struct {
PageQueryDto
Name string `json:"name" form:"name"`
}
type PublishReqDto struct {
//发布后的名称
Name string `json:"name" form:"name"`
//草稿数据的id
DraftId int32 `json:"draftId" form:"draftId"`
//是否覆盖同名数据
Overwrite bool `json:"overwrite" form:"overwrite"`
}