Subversion Repositories SmartDukaan

Rev

Rev 36439 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36439 Rev 36727
Line 142... Line 142...
142
    private String code;
142
    private String code;
143
    @Column(name = "latitude")
143
    @Column(name = "latitude")
144
    private String latitude;
144
    private String latitude;
145
    @Column(name = "longitude")
145
    @Column(name = "longitude")
146
    private String longitude;
146
    private String longitude;
-
 
147
    // Set by the lat/lng migration when a store has been processed (updated or
-
 
148
    // verified-kept). NULL = not yet processed by the migration.
-
 
149
    @Column(name = "lat_lng_updated_timestamp")
-
 
150
    private LocalDateTime latLngUpdatedTimestamp;
147
    @Column(name = "counter_size")
151
    @Column(name = "counter_size")
148
    @Enumerated(EnumType.STRING)
152
    @Enumerated(EnumType.STRING)
149
    private CounterSize counterSize = CounterSize.TEN_LAC;
153
    private CounterSize counterSize = CounterSize.TEN_LAC;
150
    @Column(name = "counter_potential")
154
    @Column(name = "counter_potential")
151
    private float counterPotential;
155
    private float counterPotential;
Line 360... Line 364...
360
 
364
 
361
    public void setLongitude(String longitude) {
365
    public void setLongitude(String longitude) {
362
        this.longitude = longitude;
366
        this.longitude = longitude;
363
    }
367
    }
364
 
368
 
-
 
369
    public LocalDateTime getLatLngUpdatedTimestamp() {
-
 
370
        return latLngUpdatedTimestamp;
-
 
371
    }
-
 
372
 
-
 
373
    public void setLatLngUpdatedTimestamp(LocalDateTime latLngUpdatedTimestamp) {
-
 
374
        this.latLngUpdatedTimestamp = latLngUpdatedTimestamp;
-
 
375
    }
-
 
376
 
365
    public Address getUserAddress() {
377
    public Address getUserAddress() {
366
        return userAddress;
378
        return userAddress;
367
    }
379
    }
368
 
380
 
369
    public void setUserAddress(Address userAddress) {
381
    public void setUserAddress(Address userAddress) {