Files
bssapp/svc/models/customerlist.go
2026-02-11 17:46:22 +03:00

14 lines
477 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// models/customerlist.go
package models
type CustomerList struct {
CurrAccTypeCode int `json:"CurrAccTypeCode"` // 🆕 FK için lazım
Cari_Kod string `json:"Cari_Kod"`
Cari_Ad string `json:"Cari_Ad"`
Musteri_Ana_Grubu string `json:"Musteri_Ana_Grubu"`
Piyasa string `json:"Piyasa"`
Musteri_Temsilcisi string `json:"Musteri_Temsilcisi"`
Ulke string `json:"Ulke"`
Doviz_cinsi string `json:"Doviz_Cinsi"`
}