18 lines
721 B
Go
18 lines
721 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type ReferenceCase struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
Title string `orm:"title" json:"title"`
|
|
CaseNumber string `orm:"case_number" json:"case_number"`
|
|
CaseType string `orm:"case_type" json:"case_type"`
|
|
Court string `orm:"court" json:"court"`
|
|
Parties string `orm:"parties" json:"parties"`
|
|
Description string `orm:"description" json:"description"`
|
|
DatasetId int64 `orm:"dataset_id" json:"dataset_id"`
|
|
Status int `orm:"status" json:"status"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
|
|
}
|