fic: Add Order, Help and Type values in struct
This commit is contained in:
parent
867e9bb345
commit
74e8c3801a
16 changed files with 134 additions and 110 deletions
|
|
@ -3,13 +3,14 @@ package fic
|
|||
import ()
|
||||
|
||||
type Flag interface {
|
||||
GetId() int64
|
||||
GetId() int
|
||||
RecoverId() (Flag, error)
|
||||
Create(e Exercice) (Flag, error)
|
||||
Update() (int64, error)
|
||||
Delete() (int64, error)
|
||||
AddDepend(d Flag) error
|
||||
GetDepends() ([]Flag, error)
|
||||
GetOrder() int8
|
||||
Check(val interface{}) int
|
||||
FoundBy(t Team)
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue