Subversion Repositories SmartDukaan

Rev

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

Rev 32163 Rev 32903
Line 141... Line 141...
141
        if (Float.floatToIntBits(transferPrice) != Float.floatToIntBits(other.transferPrice)) return false;
141
        if (Float.floatToIntBits(transferPrice) != Float.floatToIntBits(other.transferPrice)) return false;
142
        if (vendorId != other.vendorId) return false;
142
        if (vendorId != other.vendorId) return false;
143
        return true;
143
        return true;
144
    }
144
    }
145
 
145
 
-
 
146
    @Override
-
 
147
    public String toString() {
-
 
148
        return "VendorPriceCircularModel{" +
-
 
149
                "id=" + id +
-
 
150
                ", vendorId=" + vendorId +
-
 
151
                ", catalogId=" + catalogId +
-
 
152
                ", transferPrice=" + transferPrice +
-
 
153
                ", dealerPrice=" + dealerPrice +
-
 
154
                ", mop=" + mop +
-
 
155
                ", effectedOn=" + effectedOn +
-
 
156
                ", status='" + status + '\'' +
-
 
157
                '}';
146
 
158
    }
147
}
159
}