mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			251 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			251 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package model
 | 
						|
 | 
						|
type LoginAccount struct {
 | 
						|
	Id       uint64
 | 
						|
	Username string
 | 
						|
	Token    string
 | 
						|
}
 | 
						|
 | 
						|
func (la *LoginAccount) GetAesKey() string {
 | 
						|
	return la.Token[:24]
 | 
						|
}
 | 
						|
 | 
						|
// 系统账号
 | 
						|
var SysAccount = &LoginAccount{
 | 
						|
	Id:       1,
 | 
						|
	Username: "system",
 | 
						|
}
 |