You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
411 B

6 months ago
package model
type MissionClaimAddress struct { //领取任务地址
Address
AddressId uint `gorm:"type:int(11)" json:"address_id"` //地址id
MissionClaimId uint `gorm:"type:int(11)" json:"mission_claim_id"` //领取任务id
OrderID string `gorm:"size:50;index" json:"order_id"` //订单号
}
func (MissionClaimAddress) TableName() string {
return "mission_claim_address"
}