mypicturedata.gen.go 570 B

12345678910111213141516171819
  1. // Code generated by gorm.io/gen. DO NOT EDIT.
  2. // Code generated by gorm.io/gen. DO NOT EDIT.
  3. // Code generated by gorm.io/gen. DO NOT EDIT.
  4. package model
  5. const TableNameMypicturedatum = "mypicturedata"
  6. // Mypicturedatum mapped from table <mypicturedata>
  7. type Mypicturedatum struct {
  8. ID string `gorm:"column:id;primaryKey" json:"id"`
  9. PicURL string `gorm:"column:picUrl" json:"picUrl"`
  10. UserID string `gorm:"column:user_id" json:"user_id"`
  11. }
  12. // TableName Mypicturedatum's table name
  13. func (*Mypicturedatum) TableName() string {
  14. return TableNameMypicturedatum
  15. }