Created
April 27, 2018 05:56
-
-
Save denispeyrusaubes/9645711dd99dfed9fa7b639ef18d8673 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.retengr.model; | |
import org.springframework.data.annotation.Id; | |
/** | |
* Created by denis on 07/03/2018. | |
*/ | |
public class Customers { | |
@Id | |
private String id; | |
public String getGender() { | |
return gender; | |
} | |
public void setGender(String gender) { | |
this.gender = gender; | |
} | |
private String gender; | |
private String firstName; | |
private String lastName; | |
private String address; | |
private String city; | |
private State state; | |
private Orders[] orders ; | |
private float latitude; | |
private float longitude; | |
public String getId() { | |
return id; | |
} | |
public void setId(String id) { | |
this.id = id; | |
} | |
public String getFirstName() { | |
return firstName; | |
} | |
public void setFirstName(String firstName) { | |
this.firstName = firstName; | |
} | |
public String getLastName() { | |
return lastName; | |
} | |
public void setLastName(String lastName) { | |
this.lastName = lastName; | |
} | |
public String getAddress() { | |
return address; | |
} | |
public void setAddress(String address) { | |
this.address = address; | |
} | |
public String getCity() { | |
return city; | |
} | |
public void setCity(String city) { | |
this.city = city; | |
} | |
public State getState() { | |
return state; | |
} | |
public void setState(State state) { | |
this.state = state; | |
} | |
public Orders[] getOrders() { | |
return orders; | |
} | |
public void setOrders(Orders[] orders) { | |
this.orders = orders; | |
} | |
public float getLatitude() { | |
return latitude; | |
} | |
public void setLatitude(float latitude) { | |
this.latitude = latitude; | |
} | |
public float getLongitude() { | |
return longitude; | |
} | |
public void setLongitude(float longitude) { | |
this.longitude = longitude; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment