mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-08 00:50:28 +08:00
10 lines
228 B
Go
10 lines
228 B
Go
package object
|
|
|
|
type Application struct {
|
|
Id string `xorm:"notnull pk" json:"id"`
|
|
Name string `xorm:"notnull pk" json:"name"`
|
|
|
|
CreatedTime string `json:"createdTime"`
|
|
CreatedBy string `xorm:"notnull" json:"createdBy"`
|
|
}
|