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.
17 lines
457 B
17 lines
457 B
/**
|
|
* @Title: AccountSwag
|
|
* @Description: 后台登陆查询条件
|
|
* @Author: Yuki Wong(iyuki0430@msn.com)
|
|
* @Update:
|
|
* @Date: 2020/7/9 10:24
|
|
* @File: Jyt2012Swag.go
|
|
* @Software: GoLand
|
|
**/
|
|
package MySwagger
|
|
|
|
type AccountSwag struct {
|
|
Username string `json:"username" xorm:"not null comment('账号') VARCHAR(100)" example:"example"`
|
|
Password string `json:"password" xorm:"not null comment('密码') VARCHAR(100)" example:"123456"`
|
|
}
|
|
|