# bomreader **Repository Path**: porter-yao/bomreader ## Basic Information - **Project Name**: bomreader - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-21 - **Last Updated**: 2025-06-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## simple > Newanalysiscontroller > > - Params(1): 文件位置 根据文件或者目录来判断类型 > - Params(2): 最大协程数量, 只会用在读取SAP BOM的情况 ###### Partreport ``` type Partreport struct { Partnumber string Description string Basic string Remark string Lev int } ``` ###### 解析BOM ``` var bomreport map[string][]Loadbillofmaterials.Partreport var Acontrol, err = bomreader.Newanalysiscontroller(fp, 5) if bomreport, err = Acontrol.Params(); err != nil { return err } ```