123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package http
- type SupplierReq struct {
- Dest `json:"DEST"`
- Data SupplierReqData `json:"DATA"`
- }
- type SupplierReqData struct {
- BudatB string `json:"BUDAT_B"`
- BudatE string `json:"BUDAT_E"`
- CompanyCode string `json:"BUKRS"`
- Code []string `json:"TLIFNR"`
- Types []ZSORT `json:"TZSORT"`
- }
- type ZSORT struct {
- Type string `json:"ZSORT"`
- }
- type SupplierResp struct {
- Dest Dest `json:"DEST"`
- Data SupplierData `json:"DATA"`
- }
- type SupplierData struct {
- Master []Supplier `json:"TLFA1"`
- MSGER SapRespMsg `json:"MSGER"`
- }
- type Supplier struct {
- Code string `json:"LIFNR"`
- Name string `json:"NAME1"`
- ShortName string `json:"SORTL"`
- Contact string `json:"ZCONT"`
- Phone string `json:"ZTELP"`
- Mail string `json:"ZEMAL"`
- Dflag string `json:"LOEVM"`
- UpDate string `json:"UDATE"`
- UpTime string `json:"UTIME"`
- CompanyCode string `json:"BUKRS"`
- TAXNUMBER string `json:"TAXNUMBER"`
- COUNTRY string `json:"COUNTRY"`
- REGION string `json:"REGION"`
- POST_CODE1 string `json:"POST_CODE1"`
- ZSORT string `json:"ZSORT"`
- CITY1 string `json:"CITY1"`
- STREET string `json:"STREET"`
- BANKS string `json:"BANK_COUNTRY"`
- BANKL string `json:"BANKL"`
- BANKN string `json:"BANKN"`
- KOINH string `json:"KOINH"`
- ZRESP string `json:"ZRESP"`
- }
|