42 lines
851 B
TypeScript
42 lines
851 B
TypeScript
export interface CustomerAddress {
|
|
idCustomer: number;
|
|
idAddress: number;
|
|
neighbourhood: string;
|
|
city: string;
|
|
state: string;
|
|
zipCode: string;
|
|
street: string;
|
|
complement: string;
|
|
numberAddress: string;
|
|
cityCode?: number;
|
|
referencePoint: string;
|
|
note?: string;
|
|
phone?: number;
|
|
cellPhone?: string;
|
|
ibgeCode: string;
|
|
placeId: number;
|
|
latitude: number;
|
|
longitude: number;
|
|
addressType?: string;
|
|
}
|
|
|
|
|
|
// export interface CustomerAddressxx {
|
|
// codcli: number;
|
|
// codendentcli: number;
|
|
// bairroent: string;
|
|
// municent: string;
|
|
// estent: string;
|
|
// cepent: string;
|
|
// enderent: string;
|
|
// complementoent: string;
|
|
// numeroent: string;
|
|
// codmunicipio?: any;
|
|
// pontorefer: string;
|
|
// longitude?: any;
|
|
// latitude?: any;
|
|
// observacao?: any;
|
|
// fonerecebedor?: any;
|
|
// telent?: any;
|
|
// }
|