Compare commits
6 Commits
Author | SHA1 | Date |
---|---|---|
|
c7c6f2cd22 | |
|
db2c573b33 | |
|
8b1d6c6c8b | |
|
668c7d0795 | |
|
ed64beb5fa | |
|
727f4ea719 |
|
@ -0,0 +1,9 @@
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
You can use this library by executing the following command and specifying the version you want to use:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go get git.ex.umbach.dev/LMS/libcore@v1.0.0
|
||||||
|
```
|
||||||
|
|
||||||
|
You can see the latest version of the library on the [tags page](https://git.ex.umbach.dev/LMS/libcore/tags)
|
|
@ -5,7 +5,9 @@ import "time"
|
||||||
type Question struct {
|
type Question struct {
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
Id string `gorm:"primaryKey;type:varchar(36)"`
|
||||||
LessonId string `gorm:"type:varchar(36)"`
|
LessonId string `gorm:"type:varchar(36)"`
|
||||||
Question string `gorm:"type:text"`
|
QuestionId string `gorm:"type:varchar(36)"`
|
||||||
|
ReplyId string `gorm:"type:varchar(36)"`
|
||||||
|
Message string `gorm:"type:text"`
|
||||||
Likes uint16 `gorm:"type:smallint(5)"`
|
Likes uint16 `gorm:"type:smallint(5)"`
|
||||||
CreatorUserId string `gorm:"type:varchar(36)"`
|
CreatorUserId string `gorm:"type:varchar(36)"`
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time
|
||||||
|
@ -19,20 +21,3 @@ type QuestionLike struct {
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time
|
||||||
UpdatedAt time.Time
|
UpdatedAt time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
type QuestionReply struct {
|
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
|
||||||
QuestionId string `gorm:"type:varchar(36)"`
|
|
||||||
Reply string `gorm:"type:text"`
|
|
||||||
CreatorUserId string `gorm:"type:varchar(36)"`
|
|
||||||
CreatedAt time.Time
|
|
||||||
UpdatedAt time.Time
|
|
||||||
}
|
|
||||||
|
|
||||||
type QuestionReplyLike struct {
|
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
|
||||||
QuestionReplyId string `gorm:"type:varchar(36)"`
|
|
||||||
CreatorUserId string `gorm:"type:varchar(36)"`
|
|
||||||
CreatedAt time.Time
|
|
||||||
UpdatedAt time.Time
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
package models
|
package models
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
type Role struct {
|
type Role struct {
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
Id string `gorm:"primaryKey;type:varchar(36)"`
|
||||||
OrganizationId string `gorm:"type:varchar(36)"`
|
OrganizationId string `gorm:"type:varchar(36)"`
|
||||||
Master bool `gorm:"type:tinyint(1)"`
|
Master bool `gorm:"type:tinyint(1)"`
|
||||||
Name string `gorm:"type:varchar(255)"`
|
Name string `gorm:"type:varchar(255)"`
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
type RolePermission struct {
|
type RolePermission struct {
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
Id string `gorm:"primaryKey;type:varchar(36)"`
|
||||||
RoleId string `gorm:"type:varchar(36)"`
|
RoleId string `gorm:"type:varchar(36)"`
|
||||||
Permission uint16 `gorm:"type:smallint"`
|
Permission uint16 `gorm:"type:smallint"`
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ type User struct {
|
||||||
Id string `gorm:"primaryKey;type:varchar(36)"`
|
Id string `gorm:"primaryKey;type:varchar(36)"`
|
||||||
OrganizationId string `gorm:"type:varchar(36)"`
|
OrganizationId string `gorm:"type:varchar(36)"`
|
||||||
State uint8 `gorm:"type:tinyint(1)"`
|
State uint8 `gorm:"type:tinyint(1)"`
|
||||||
Active bool `gorm:"type:tinyint(1)"`
|
Disabled bool `gorm:"type:tinyint(1)"`
|
||||||
RoleId string `gorm:"type:varchar(36)"`
|
RoleId string `gorm:"type:varchar(36)"`
|
||||||
FirstName string `gorm:"type:varchar(255)"`
|
FirstName string `gorm:"type:varchar(255)"`
|
||||||
LastName string `gorm:"type:varchar(255)"`
|
LastName string `gorm:"type:varchar(255)"`
|
||||||
|
|
Loading…
Reference in New Issue