Subversion Repositories SmartDukaan

Rev

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

Rev 32493 Rev 32565
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.warehouse;
1
package com.spice.profitmandi.dao.entity.warehouse;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.services.mandii.AccountStatusResponseOut;
-
 
4
 
3
import javax.persistence.*;
5
import javax.persistence.*;
4
import java.util.Objects;
6
import java.util.Objects;
5
 
7
 
6
@Entity
8
@Entity
7
@Table(name = "warehouse.supplier")
9
@Table(name = "warehouse.supplier")
Line 215... Line 217...
215
 
217
 
216
    public void setInternalWarehouseId(Integer internalWarehouseId) {
218
    public void setInternalWarehouseId(Integer internalWarehouseId) {
217
        this.internalWarehouseId = internalWarehouseId;
219
        this.internalWarehouseId = internalWarehouseId;
218
    }
220
    }
219
 
221
 
-
 
222
 
220
    @Override
223
    @Override
221
    public boolean equals(Object o) {
224
    public boolean equals(Object o) {
222
        if (this == o) return true;
225
        if (this == o) return true;
223
        if (o == null || getClass() != o.getClass()) return false;
226
        if (o == null || getClass() != o.getClass()) return false;
224
        Supplier supplier = (Supplier) o;
227
        Supplier supplier = (Supplier) o;
Line 253... Line 256...
253
                ", gstin='" + gstin + '\'' +
256
                ", gstin='" + gstin + '\'' +
254
                ", tnc='" + tnc + '\'' +
257
                ", tnc='" + tnc + '\'' +
255
                ", internalWarehouseId=" + internalWarehouseId +
258
                ", internalWarehouseId=" + internalWarehouseId +
256
                ", status=" + status +
259
                ", status=" + status +
257
                ", internal=" + internal +
260
                ", internal=" + internal +
-
 
261
 
258
                '}';
262
                '}';
259
    }
263
    }
260
}
264
}