zhangqian
2024-05-21 111676bec43d0698c3f605993fe5b09bf4c93008
1
2
3
4
5
6
7
8
9
10
11
package request
 
type AddTextReq struct {
    Content          string `gorm:"type:varchar(255);not null;default:'';comment:音频名称" json:"content" binding:"required"`                // 音频名称
    LocomotiveNumber string `gorm:"index;type:varchar(255);not null;default:'';comment:机车号" json:"locomotiveNumber"  binding:"required"` // 机车号
}
 
type GetTextList struct {
    PageInfo
    Keyword string `form:"keyword"` // 关键字
}