forked from free-lancers/electricity_bill_calc_service
		
	fix(typo):修复峰的拼写。
This commit is contained in:
		| @@ -17,25 +17,25 @@ type EndUserDetail struct { | ||||
| 	WillDilute               bool                `xorm:"'dilute' bool not null default false" json:"willDilute"` | ||||
| 	LastPeriodOverall        decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodOverall"` | ||||
| 	LastPeriodCritical       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodCritical"` | ||||
| 	LastPeriodPeek           decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodPeek"` | ||||
| 	LastPeriodPeak           decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodPeak"` | ||||
| 	LastPeriodFlat           decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodFlat"` | ||||
| 	LastPeriodValley         decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodValley"` | ||||
| 	CurrentPeriodOverall     decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodOverall"` | ||||
| 	CurrentPeriodCritical    decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodCritical"` | ||||
| 	CurrentPeriodPeek        decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodPeek"` | ||||
| 	CurrentPeriodPeak        decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodPeak"` | ||||
| 	CurrentPeriodFlat        decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodFlat"` | ||||
| 	CurrentPeriodValley      decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"currentPeriodValley"` | ||||
| 	AdjustOverall            decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustOverall"` | ||||
| 	AdjustCritical           decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustCritical"` | ||||
| 	AdjustPeek               decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustPeek"` | ||||
| 	AdjustPeak               decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustPeak"` | ||||
| 	AdjustFlat               decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustFlat"` | ||||
| 	AdjustValley             decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustValley"` | ||||
| 	Overall                  decimal.NullDecimal `xorm:"numeric(14,2)" json:"overall"` | ||||
| 	OverallFee               decimal.NullDecimal `xorm:"numeric(14,2)" json:"overallFee"` | ||||
| 	Critical                 decimal.NullDecimal `xorm:"numeric(14,2)" json:"critical"` | ||||
| 	CriticalFee              decimal.NullDecimal `xorm:"numeric(18,8)" json:"criticalFee"` | ||||
| 	Peek                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"peek"` | ||||
| 	PeekFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"peekFee"` | ||||
| 	Peak                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"peak"` | ||||
| 	PeakFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"peakFee"` | ||||
| 	Flat                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"flat"` | ||||
| 	FlatFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"flatFee"` | ||||
| 	Valley                   decimal.NullDecimal `xorm:"numeric(14,2)" json:"valley"` | ||||
|   | ||||
| @@ -10,9 +10,9 @@ type ReportSummary struct { | ||||
| 	Critical                      decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"critical"` | ||||
| 	CriticalFee                   decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"criticalFee"` | ||||
| 	CriticalPrice                 decimal.NullDecimal `xorm:"numeric(16,8)" json:"criticalPrice"` | ||||
| 	Peek                          decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peak"` | ||||
| 	PeekFee                       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peakFee"` | ||||
| 	PeekPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"peakPrice"` | ||||
| 	Peak                          decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peak"` | ||||
| 	PeakFee                       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peakFee"` | ||||
| 	PeakPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"peakPrice"` | ||||
| 	Flat                          decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"flat"` | ||||
| 	FlatFee                       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"flatFee"` | ||||
| 	FlatPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"flatPrice"` | ||||
|   | ||||
		Reference in New Issue
	
	Block a user