- package model
- // 流水明细
- type Cfo_flowingWater struct {
- ModelUUID
- UserId uint `gorm:"not null;" json:"userId"`
- OrderId string `gorm:"not null;type:varchar(255)" json:"orderId"`
- Source string `gorm:"not null;type:varchar(255)" json:"source"`
- Status string `gorm:"not null;type:varchar(255)" json:"status"` // 流水状态: 1:已出账 2:已结算 3:欠费中
- FlowingWaterType string `gorm:"not null;type:varchar(255)" json:"flowingWaterType"`
- }
|