mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package form
 | 
						|
 | 
						|
// 登录表单
 | 
						|
type LoginForm struct {
 | 
						|
	Username string `json:"username" binding:"required"`
 | 
						|
	Password string `binding:"required"`
 | 
						|
	Captcha  string `json:"captcha"`
 | 
						|
	Cid      string `json:"cid"`
 | 
						|
}
 | 
						|
 | 
						|
type OtpVerfiy struct {
 | 
						|
	OtpToken string `json:"otpToken" binding:"required"`
 | 
						|
	Code     string `json:"code" binding:"required"`
 | 
						|
}
 |