You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
313 B

package MySwagger
type DataInResult struct {
Success bool `json:"success" example:"true"`
SuccessIDs []string `json:"success_ids" example:"202008080008,202008080009,202008080010"`
FailResults []FailResult `json:"fail_results"`
Message string `json:"message" example:"操作成功"`
}