mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			611 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			611 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entity
 | 
						|
 | 
						|
import "time"
 | 
						|
 | 
						|
type AccountRolePO struct {
 | 
						|
	RoleId        uint64        `json:"roleId"`
 | 
						|
	RoleName      string        `json:"roleName"`
 | 
						|
	Code          string        `json:"code"`
 | 
						|
	Status        int           `json:"status"`
 | 
						|
	AccountId     uint64        `json:"accountId" gorm:"column:accountId"`
 | 
						|
	AccountName   string        `json:"accountName" gorm:"column:accountName"`
 | 
						|
	Username      string        `json:"username"`
 | 
						|
	AccountStatus AccountStatus `json:"accountStatus" gorm:"column:accountStatus"`
 | 
						|
	CreateTime    *time.Time    `json:"createTime"`
 | 
						|
	Creator       string        `json:"creator"`
 | 
						|
}
 |