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"` | 	WillDilute               bool                `xorm:"'dilute' bool not null default false" json:"willDilute"` | ||||||
| 	LastPeriodOverall        decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"lastPeriodOverall"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	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"` | 	AdjustValley             decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"adjustValley"` | ||||||
| 	Overall                  decimal.NullDecimal `xorm:"numeric(14,2)" json:"overall"` | 	Overall                  decimal.NullDecimal `xorm:"numeric(14,2)" json:"overall"` | ||||||
| 	OverallFee               decimal.NullDecimal `xorm:"numeric(14,2)" json:"overallFee"` | 	OverallFee               decimal.NullDecimal `xorm:"numeric(14,2)" json:"overallFee"` | ||||||
| 	Critical                 decimal.NullDecimal `xorm:"numeric(14,2)" json:"critical"` | 	Critical                 decimal.NullDecimal `xorm:"numeric(14,2)" json:"critical"` | ||||||
| 	CriticalFee              decimal.NullDecimal `xorm:"numeric(18,8)" json:"criticalFee"` | 	CriticalFee              decimal.NullDecimal `xorm:"numeric(18,8)" json:"criticalFee"` | ||||||
| 	Peek                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"peek"` | 	Peak                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"peak"` | ||||||
| 	PeekFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"peekFee"` | 	PeakFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"peakFee"` | ||||||
| 	Flat                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"flat"` | 	Flat                     decimal.NullDecimal `xorm:"numeric(14,2)" json:"flat"` | ||||||
| 	FlatFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"flatFee"` | 	FlatFee                  decimal.NullDecimal `xorm:"numeric(18,8)" json:"flatFee"` | ||||||
| 	Valley                   decimal.NullDecimal `xorm:"numeric(14,2)" json:"valley"` | 	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"` | 	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"` | 	CriticalFee                   decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"criticalFee"` | ||||||
| 	CriticalPrice                 decimal.NullDecimal `xorm:"numeric(16,8)" json:"criticalPrice"` | 	CriticalPrice                 decimal.NullDecimal `xorm:"numeric(16,8)" json:"criticalPrice"` | ||||||
| 	Peek                          decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peak"` | 	Peak                          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"` | 	PeakFee                       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"peakFee"` | ||||||
| 	PeekPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"peakPrice"` | 	PeakPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"peakPrice"` | ||||||
| 	Flat                          decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"flat"` | 	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"` | 	FlatFee                       decimal.Decimal     `xorm:"numeric(14,2) not null default 0" json:"flatFee"` | ||||||
| 	FlatPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"flatPrice"` | 	FlatPrice                     decimal.NullDecimal `xorm:"numeric(16,8)" json:"flatPrice"` | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user