feat(topup):基本完成商户充值记录的数据库操作部分。

This commit is contained in:
徐涛
2023-06-19 14:46:21 +08:00
parent 541932d62e
commit 234e811324
3 changed files with 217 additions and 0 deletions

9
vo/top_up.go Normal file
View File

@@ -0,0 +1,9 @@
package vo
import "github.com/shopspring/decimal"
type TopUpCreationForm struct {
Tenement string `json:"tenement"`
Meter string `json:"meter"`
Amount decimal.Decimal `json:"amount"`
}