1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package http
- type MaterialReqData struct {
- BudatB string `json:"BUDAT_B"`
- BudatE string `json:"BUDAT_E"`
- Codes []MATNR `json:"TMATNR"`
- Type MTART `json:"TMTART"`
- Group []MATKL `json:"TMATKL"`
- }
- type MATKL struct {
- MATKL string `json:"MATKL"`
- }
- type MATNR struct {
- Code string `json:"MATNR"`
- }
- type MTART struct {
- MTART string `json:"MTART"`
- }
- type MaterialReq struct {
- Dest `json:"DEST"`
- Data MaterialReqData `json:"DATA"`
- }
- type MaterialResp struct {
- Dest `json:"DEST"`
- Data Material `json:"DATA"`
- }
- type Material struct {
- Master []MaterialDetail `json:"TMARA"`
- Msger SapRespMsg `json:"MSGER"`
- }
- type MaterialDetail struct {
- Code string `json:"MATNR"`
- Type string `json:"MTART"`
- Group string `json:"MATKL"`
- Description string `json:"MAKTX"`
- Unit string `json:"MEINS"`
- UnitNum string `json:"UMREZ"`
- SwitchUnit string `json:"MEINH"`
- SwitchUnitNum string `json:"UMREN"`
- Name string `json:"ZMINC"`
- Model string `json:"ZGUIG"`
- Dflag string `json:"LVORM"`
- ModifyTime string `json:"LAEDA"`
- }
|