// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package po import ( "github.com/gogf/gf/v2/os/gtime" ) // MerchAgreement is the golang structure for table merch_agreement. type MerchAgreement struct { Id int `json:"id" orm:"id" ` // Title string `json:"title" orm:"title" ` // 合同标题 Content string `json:"content" orm:"content" ` // 合同内容 Fileds string `json:"fileds" orm:"fileds" ` // 字段 费率rate:['0.25','0.38'],公章seal:1,year:1,month:1,day:1,ymd:1,manager:'sign',merch:'sign',payment_day:['T+1','D+1'] Sort int `json:"sort" orm:"sort" ` // 排序 CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // 创建时间 UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // 更新时间 Status int `json:"status" orm:"status" ` // 状态 Description string `json:"description" orm:"description" ` // 描述 Type string `json:"type" orm:"type" ` // 分类 }