17 lines
634 B
Go
17 lines
634 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type ContractMark struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
ClauseId int64 `orm:"clause_id" json:"clause_id"`
|
|
ChunkId int64 `orm:"chunk_id" json:"chunk_id"`
|
|
DatasetId int64 `orm:"dataset_id" json:"dataset_id"`
|
|
LawTitle string `orm:"law_title" json:"law_title"`
|
|
LawItem string `orm:"law_item" json:"law_item"`
|
|
Content string `orm:"content" json:"content"`
|
|
Reason string `orm:"reason" json:"reason"`
|
|
Score float64 `orm:"score" json:"score"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|