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.
14 lines
430 B
14 lines
430 B
package logger
|
|
|
|
type AlipayRefundNotice struct {
|
|
ID uint `gorm:"column:id;primary_key" json:"id"`
|
|
TradeNo string `gorm:"column:trade_no" json:"tradeNo"`
|
|
OutTradeNo string `gorm:"column:out_trade_no" json:"outTradeNo"`
|
|
OutBizNo string `gorm:"column:out_biz_no"`
|
|
Text string `gorm:"column:text" json:"text"`
|
|
}
|
|
|
|
func (*AlipayRefundNotice) TableName() string {
|
|
return "recook_logger_alipay_refund_notice"
|
|
}
|