| 12345678910111213141516171819202122 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // RepairResult is the golang structure for table repair_result.
- type RepairResult struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- RepairId int `orm:"RepairId" json:"repairId"` // 报修Id
- ProcessById int `orm:"ProcessById" json:"processById"` // 处理人 Id
- ProcessByName string `orm:"ProcessByName" json:"processByName"` // 处理人名称
- ProcessType string `orm:"ProcessType" json:"processType"` // 处理方式
- ProcessNote string `orm:"ProcessNote" json:"processNote"` // 处理描述
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|