group_user_bind.go 1.1 KB

1234567891011121314151617181920212223
  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. // GroupUserBind is the golang structure for table group_user_bind.
  9. type GroupUserBind struct {
  10. Id int `orm:"Id,primary" json:"id"` //
  11. GroupId int `orm:"GroupId" json:"groupId"` // 课题组ID
  12. UserId int `orm:"UserId" json:"userId"` // 用户ID
  13. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  14. CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
  15. CreateBy string `orm:"CreateBy" json:"createBy"` //
  16. ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
  17. ModifiedUserId int `orm:"ModifiedUserId" json:"modifiedUserId"` //
  18. ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
  19. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` //
  20. }