Subversion Repositories SmartDukaan

Rev

Rev 32615 | Rev 35079 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32615 Rev 33124
Line 164... Line 164...
164
    private LocalDateTime activeTimeStamp;
164
    private LocalDateTime activeTimeStamp;
165
    @Column(name = "target")
165
    @Column(name = "target")
166
    private int target;
166
    private int target;
167
    @Column(name = "grace_count")
167
    @Column(name = "grace_count")
168
    private int graceCount;
168
    private int graceCount;
-
 
169
    @Column(name = "astId")
-
 
170
    private int astId;
169
 
171
 
170
    public FofoStore() {
172
    public FofoStore() {
171
    }
173
    }
172
 
174
 
-
 
175
    public int getAstId() {
-
 
176
        return astId;
-
 
177
    }
-
 
178
 
-
 
179
    public void setAstId(int astId) {
-
 
180
        this.astId = astId;
-
 
181
    }
-
 
182
 
173
    public int getCodeInt() {
183
    public int getCodeInt() {
174
        return codeInt;
184
        return codeInt;
175
    }
185
    }
176
 
186
 
177
    public void setCodeInt(int codeInt) {
187
    public void setCodeInt(int codeInt) {
Line 409... Line 419...
409
                return false;
419
                return false;
410
        } else if (!graceDate.equals(other.graceDate))
420
        } else if (!graceDate.equals(other.graceDate))
411
            return false;
421
            return false;
412
        if (id != other.id)
422
        if (id != other.id)
413
            return false;
423
            return false;
-
 
424
        if (astId != other.astId)
-
 
425
            return false;
414
        if (internal != other.internal)
426
        if (internal != other.internal)
415
            return false;
427
            return false;
416
        if (investmentOk != other.investmentOk)
428
        if (investmentOk != other.investmentOk)
417
            return false;
429
            return false;
418
        if (latitude == null) {
430
        if (latitude == null) {
Line 442... Line 454...
442
        return true;
454
        return true;
443
    }
455
    }
444
 
456
 
445
    @Override
457
    @Override
446
    public String toString() {
458
    public String toString() {
447
        return "FofoStore [id=" + id + ", code=" + code + ", latitude=" + latitude + ", longitude=" + longitude
459
        return "FofoStore [id=" + id + ",astId=" + astId + ", code=" + code + ", latitude=" + latitude + ", longitude=" + longitude
448
                + ", counterSize=" + counterSize + ", counterPotential=" + counterPotential + ", warehouseId="
460
                + ", counterSize=" + counterSize + ", counterPotential=" + counterPotential + ", warehouseId="
449
                + warehouseId + ", minimumInvestment=" + minimumInvestment + ", graceDate=" + graceDate
461
                + warehouseId + ", minimumInvestment=" + minimumInvestment + ", graceDate=" + graceDate
450
                + ", investmentOk=" + investmentOk + ", active=" + active + ", pan=" + pan + ", userAddress="
462
                + ", investmentOk=" + investmentOk + ", active=" + active + ", pan=" + pan + ", userAddress="
451
                + userAddress + ", internal=" + internal + ", bagsLastCredited=" + bagsLastCredited + ", fofoType="
463
                + userAddress + ", internal=" + internal + ", bagsLastCredited=" + bagsLastCredited + ", fofoType="
452
                + fofoType + ", activationType=" + activationType + ", activeTimeStamp=" + activeTimeStamp
464
                + fofoType + ", activationType=" + activationType + ", activeTimeStamp=" + activeTimeStamp