enterprise/common/model/checkin_money.go

14 lines
219 B
Go
Raw Normal View History

2023-08-09 22:00:55 +08:00
package model
type CheckinMoney struct {
Id int64
Day string
2023-08-10 19:26:09 +08:00
Username string
2023-08-09 22:00:55 +08:00
CheckinId int64
CheckinType string
BillNo string
2023-08-10 21:24:54 +08:00
BillAmount int64
2023-08-09 22:00:55 +08:00
CreateTime int64
UpdateTime int64
}