| 12345678910111213141516171819202122 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // BaseProgramGroup is the golang structure for table base_program_group.
- type BaseProgramGroup struct {
- Id int `orm:"Id,primary" json:"id"` //
- GroupName string `orm:"GroupName" json:"groupName"` // 课题组名称
- CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
- CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
- CreateBy string `orm:"CreateBy" json:"createBy"` //
- ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
- ModifiedUserId int `orm:"ModifiedUserId" json:"modifiedUserId"` //
- ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` //
- }
|