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.
|
package session |
|
|
|
// Subject 认证对象 |
|
type Subject struct { |
|
Id int64 `json:"id,omitempty"` // 用户id |
|
Name string `json:"name,omitempty"` // 用户名 |
|
Time int64 `json:"time,omitempty"` // 生成时间戳 |
|
}
|
|
|