智慧食堂
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
541 B

  1. package model
  2. import (
  3. "time"
  4. )
  5. type PermissionGroupPermission struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. GroupId int `json:"group_id" xorm:"not null default 0 comment('权限组id') INT(11)"`
  8. PermissionId int `json:"permission_id" xorm:"not null default 0 comment('权限id') INT(11)"`
  9. CreateAt time.Time `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  10. UpdateAt time.Time `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  11. }