17 lines
373 B
Go
17 lines
373 B
Go
package vo
|
|
|
|
import (
|
|
"electricity_bill_calc/types"
|
|
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
type MeterReadingForm struct {
|
|
Overall decimal.Decimal `json:"overall"`
|
|
Critical decimal.Decimal `json:"critical"`
|
|
Peak decimal.Decimal `json:"peak"`
|
|
Flat decimal.Decimal `json:"flat"`
|
|
Valley decimal.Decimal `json:"valley"`
|
|
ReadAt *types.DateTime `json:"readAt"`
|
|
}
|