14 lines
223 B
Go
14 lines
223 B
Go
package order
|
|
|
|
import "sundynix-go/global"
|
|
|
|
// Refund
|
|
type Refund struct {
|
|
global.BaseModel
|
|
UserId string `gorm:"column:user_id;size:50" json:"userId"` //
|
|
}
|
|
|
|
func (Refund) TableName() string {
|
|
return "sundynix_refund"
|
|
}
|