sys_user_post.go 515 B

12345678910111213141516
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. )
  8. // SysUserPost is the golang structure of table sys_user_post for DAO operations like Where/Data.
  9. type SysUserPost struct {
  10. g.Meta `orm:"table:sys_user_post, do:true"`
  11. UserId interface{} // 用户ID
  12. PostId interface{} // 岗位ID
  13. }