12345678910111213141516171819 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- const TableNameMypicturedatum = "mypicturedata"
- // Mypicturedatum mapped from table <mypicturedata>
- type Mypicturedatum struct {
- ID string `gorm:"column:id;primaryKey" json:"id"`
- PicURL string `gorm:"column:picUrl" json:"picUrl"`
- UserID string `gorm:"column:user_id" json:"user_id"`
- }
- // TableName Mypicturedatum's table name
- func (*Mypicturedatum) TableName() string {
- return TableNameMypicturedatum
- }
|