16 lines
566 B
Go
16 lines
566 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type ContractClause struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
TaskId int64 `orm:"task_id" json:"task_id"`
|
|
Seq int `orm:"seq" json:"seq"`
|
|
Title string `orm:"title" json:"title"`
|
|
Content string `orm:"content" json:"content"`
|
|
Status int `orm:"status" json:"status"`
|
|
ErrorMsg string `orm:"error_msg" json:"error_msg"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
|
|
}
|