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

16 lines
340 B
Go

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"`
}