ilink-world/model/GeolocatedPoint.js

49 lines
987 B
JavaScript

import Network from "./Network";
export default class GeolocatedPoint{
firstname:string=null
lastname:string
adresse:string
phone:string
email:string
etat:boolean
id:number
longitude:number
latitude:number
solde:number
network:string
country:string
category:string
network_id:number
transactionNumber:string
code_membre:string
code_parrain:string
code_dial:string
}
GeolocatedPoint.schema={
name:"GeolocatedPoint",
primaryKey: 'id',
properties:{
id:'int',
firstname:'string?',
lastname:'string',
adresse:'string',
longitude:'float',
latitude:'float',
phone:'string?',
solde:'int',
country:'string',
category:'string',
email:'string',
etat:'int' ,
code_parrain:'string',
code_dial:'string',
network_id:'int',
transactionNumber:'string?',
code_membre:'string',
network:'string'
}
}