| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // GroupUserBind is the golang structure for table group_user_bind.
- type GroupUserBind struct {
- Id int `orm:"Id,primary" json:"id"` //
- GroupId int `orm:"GroupId" json:"groupId"` // 课题组ID
- UserId int `orm:"UserId" json:"userId"` // 用户ID
- 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"` //
- }
|