go-wxhelper/model/dto/urlc.go

9 lines
227 B
Go
Raw Normal View History

2024-07-16 11:58:52 +08:00
package dto
// ShortUrlResponse
// @description: 短链接返回结构体
type ShortUrlResponse struct {
Error int `json:"error"` // 错误码1表示发生错误0则正常
Short string `json:"short"` // 短链接
}