plat_schedule.go 1.6 KB

1234567891011121314151617181920212223242526272829
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // PlatSchedule is the golang structure for table plat_schedule.
  9. type PlatSchedule struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. SchTitle string `orm:"sch_title" json:"schTitle"` // 标题
  12. SchContent string `orm:"sch_content" json:"schContent"` // 内容
  13. SchDate *gtime.Time `orm:"sch_date" json:"schDate"` // 日期
  14. UserId int `orm:"user_id" json:"userId"` // 关联用户
  15. UserName string `orm:"user_name" json:"userName"` // 用户姓名
  16. BizType string `orm:"biz_type" json:"bizType"` // 关联业务类型
  17. BizBillId int `orm:"biz_bill_id" json:"bizBillId"` // 关联业务单据
  18. Remark string `orm:"remark" json:"remark"` // 备注
  19. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  20. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  21. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  22. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  23. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  24. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  25. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  26. }