base_program_group.go 1.1 KB

12345678910111213141516171819202122
  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. // BaseProgramGroup is the golang structure for table base_program_group.
  9. type BaseProgramGroup struct {
  10. Id int `orm:"Id,primary" json:"id"` //
  11. GroupName string `orm:"GroupName" json:"groupName"` // 课题组名称
  12. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  13. CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
  14. CreateBy string `orm:"CreateBy" json:"createBy"` //
  15. ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
  16. ModifiedUserId int `orm:"ModifiedUserId" json:"modifiedUserId"` //
  17. ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
  18. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` //
  19. }