Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.time.LocalDateTime;public class ProcessImeisModel {private int offerId;private String imeis;private LocalDateTime createTimestamp;private boolean bocked;public int getOfferId() {return offerId;}public void setOfferId(int offerId) {this.offerId = offerId;}public String getImeis() {return imeis;}public void setImeis(String imeis) {this.imeis = imeis;}public LocalDateTime getCreateTimestamp() {return createTimestamp;}public void setCreateTimestamp(LocalDateTime createTimestamp) {this.createTimestamp = createTimestamp;}public boolean isBocked() {return bocked;}public void setBocked(boolean bocked) {this.bocked = bocked;}@Overridepublic String toString() {return "ProcessImeisModel{" +"offerId=" + offerId +", imeis='" + imeis + '\'' +", createTimestamp=" + createTimestamp +", bocked=" + bocked +'}';}}