| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.param;
- /**
- * @author 81229
- */
- public class RsvrRgstrParam {
- /**
- * 纬度
- */
- private Double latitude;
- /**
- * 经度
- */
- private Double longitude;
- public Double getLatitude() {
- return latitude;
- }
- public void setLatitude(Double latitude) {
- this.latitude = latitude;
- }
- public Double getLongitude() {
- return longitude;
- }
- public void setLongitude(Double longitude) {
- this.longitude = longitude;
- }
- }
|