diff options
author | xuri <xuri.me@gmail.com> | 2019-10-16 01:03:29 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-10-17 00:02:39 +0800 |
commit | 2e791fa433def282ee2e7a5049a46fc4a76796cf (patch) | |
tree | 8d0ad49e63d7154b1ba6687f6d289cfb1d0d2643 /xmlPivotCache.go | |
parent | 2d21b5b50f30ae9868b2f8b1f7299ceefcf87fd2 (diff) |
Optimize code of Getting/Setting Page Margins
Diffstat (limited to 'xmlPivotCache.go')
-rw-r--r-- | xmlPivotCache.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlPivotCache.go b/xmlPivotCache.go index a4b0711..45b48de 100644 --- a/xmlPivotCache.go +++ b/xmlPivotCache.go @@ -48,7 +48,7 @@ type xlsxPivotCacheDefinition struct { // PivotTable. type xlsxCacheSource struct { Type string `xml:"type,attr"` - ConnectionId int `xml:"connectionId,attr,omitempty"` + ConnectionID int `xml:"connectionId,attr,omitempty"` WorksheetSource *xlsxWorksheetSource `xml:"worksheetSource"` Consolidation *xlsxConsolidation `xml:"consolidation"` ExtLst *xlsxExtLst `xml:"extLst"` @@ -89,7 +89,7 @@ type xlsxCacheField struct { PropertyName string `xml:"propertyName,attr,omitempty"` ServerField bool `xml:"serverField,attr,omitempty"` UniqueList bool `xml:"uniqueList,attr,omitempty"` - NumFmtId int `xml:"numFmtId,attr"` + NumFmtID int `xml:"numFmtId,attr"` Formula string `xml:"formula,attr,omitempty"` SQLType int `xml:"sqlType,attr,omitempty"` Hierarchy int `xml:"hierarchy,attr,omitempty"` |