|
@@ -7,11 +7,11 @@ import (
|
|
|
|
|
|
// RefundDealFlow 表示 refund_deal_flow 表的 ORM 结构体
|
|
|
type RefundDealFlow struct {
|
|
|
- ID int `gorm:"column:id;primaryKey;autoIncrement:false"`
|
|
|
- OperatorUserID *int `gorm:"column:operator_user_id;default:null"`
|
|
|
- ProductOrderNo *string `gorm:"column:product_order_no;default:null"`
|
|
|
- RefundOrderNo *string `gorm:"column:refund_order_no;default:null"`
|
|
|
- CreatedTime *time.Time `gorm:"column:created_time;default:null"`
|
|
|
+ ID int `gorm:"column:id;primaryKey;autoIncrement:false"`
|
|
|
+ OperatorUserID int `gorm:"column:operator_user_id;default:null"`
|
|
|
+ ProductOrderNo string `gorm:"column:product_order_no;default:null"`
|
|
|
+ RefundOrderNo string `gorm:"column:refund_order_no;default:null"`
|
|
|
+ CreatedTime time.Time `gorm:"column:created_time;default:null"`
|
|
|
}
|
|
|
|
|
|
// TableName 返回表名
|