23 lines
1.0 KiB
Go
23 lines
1.0 KiB
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package po
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// Agreement is the golang structure for table agreement.
|
||
|
type Agreement struct {
|
||
|
Id int `json:"id" orm:"id" ` //
|
||
|
Title string `json:"title" orm:"title" ` // 合同标题
|
||
|
Content string `json:"content" orm:"content" ` // 合同内容
|
||
|
Type string `json:"type" orm:"type" ` // 分类
|
||
|
AccountId string `json:"accountId" orm:"account_id" ` // 进件id
|
||
|
SignData *gtime.Time `json:"signData" orm:"sign_data" ` // 签约时间
|
||
|
DeleteFlag int `json:"deleteFlag" orm:"delete_flag" ` //
|
||
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` //
|
||
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` //
|
||
|
}
|