Rev 34265 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import com.spice.profitmandi.dao.enumuration.dtr.CommunicationType;import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;import java.time.LocalDateTime;import java.util.List;public class CreateRefferalRequest {private int id;private String firstName;private String lastName;private String city;private String state;private String mobile;private String address;private LeadStatus status;private String remark;private double potential;private int assignTo;private String source;private Boolean colorCheck;private String reason;private CommunicationType communicationType;private LocalDateTime closureTimestamp;private String outletName;private int counterSize;private int frontp;private int internalLongShot;private int frontWithMarket;private int internalLeftWall;private int internalRightWall;private List<LeadBrandModel> leadBrands;public String getOutletName() {return outletName;}public void setOutletName(String outletName) {this.outletName = outletName;}public int getCounterSize() {return counterSize;}public void setCounterSize(int counterSize) {this.counterSize = counterSize;}public int getFrontp() {return frontp;}public void setFrontp(int frontp) {this.frontp = frontp;}public int getInternalLongShot() {return internalLongShot;}public void setInternalLongShot(int internalLongShot) {this.internalLongShot = internalLongShot;}public int getFrontWithMarket() {return frontWithMarket;}public void setFrontWithMarket(int frontWithMarket) {this.frontWithMarket = frontWithMarket;}public int getInternalLeftWall() {return internalLeftWall;}public void setInternalLeftWall(int internalLeftWall) {this.internalLeftWall = internalLeftWall;}public int getInternalRightWall() {return internalRightWall;}public void setInternalRightWall(int internalRightWall) {this.internalRightWall = internalRightWall;}public List<LeadBrandModel> getLeadBrands() {return leadBrands;}public void setLeadBrands(List<LeadBrandModel> leadBrands) {this.leadBrands = leadBrands;}public String getReason() {return reason;}public void setReason(String reason) {this.reason = reason;}public CommunicationType getCommunicationType() {return communicationType;}public void setCommunicationType(CommunicationType communicationType) {this.communicationType = communicationType;}public LocalDateTime getClosureTimestamp() {return closureTimestamp;}public void setClosureTimestamp(LocalDateTime closureTimestamp) {this.closureTimestamp = closureTimestamp;}public Boolean getColorCheck() {return colorCheck;}public void setColorCheck(Boolean colorCheck) {this.colorCheck = colorCheck;}public String getSource() {return source;}public void setSource(String source) {this.source = source;}public int getAssignTo() {return assignTo;}public void setAssignTo(int assignTo) {this.assignTo = assignTo;}private LocalDateTime schelduleTimestamp;public LeadStatus getStatus() {return status;}public void setStatus(LeadStatus status) {this.status = status;}public String getRemark() {return remark;}public void setRemark(String remark) {this.remark = remark;}public LocalDateTime getSchelduleTimestamp() {return schelduleTimestamp;}public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {this.schelduleTimestamp = schelduleTimestamp;}public String getAddress() {return address;}public void setAddress(String address) {this.address = address;}private String reffereeEmail;private boolean fofoAssociate;public String getFirstName() {return firstName;}public void setFirstName(String firstName) {this.firstName = firstName;}public String getLastName() {return lastName;}public void setLastName(String lastName) {this.lastName = lastName;}public String getCity() {return city;}public void setCity(String city) {this.city = city;}public String getState() {return state;}public void setState(String state) {this.state = state;}public String getMobile() {return mobile;}public void setMobile(String mobile) {this.mobile = mobile;}public String getReffereeEmail() {return reffereeEmail;}public void setReffereeEmail(String reffereeEmail) {this.reffereeEmail = reffereeEmail;}public boolean isFofoAssociate() {return fofoAssociate;}public void setFofoAssociate(boolean fofoAssociate) {this.fofoAssociate = fofoAssociate;}public double getPotential() {return potential;}public void setPotential(double potential) {this.potential = potential;}public int getId() {return id;}public void setId(int id) {this.id = id;}@Overridepublic String toString() {return "CreateRefferalRequest{" +"firstName='" + firstName + '\'' +", lastName='" + lastName + '\'' +", id='" + id + '\'' +", city='" + city + '\'' +", state='" + state + '\'' +", mobile='" + mobile + '\'' +", address='" + address + '\'' +", status=" + status +", remark='" + remark + '\'' +", potential=" + potential +", assignTo=" + assignTo +", source='" + source + '\'' +", colorCheck=" + colorCheck +", reason='" + reason + '\'' +", communicationType=" + communicationType +", closureTimestamp=" + closureTimestamp +", outletName='" + outletName + '\'' +", counterSize=" + counterSize +", frontp=" + frontp +", internalLongShot=" + internalLongShot +", frontWithMarket=" + frontWithMarket +", internalLeftWall=" + internalLeftWall +", internalRightWall=" + internalRightWall +", leadBrands=" + leadBrands +", schelduleTimestamp=" + schelduleTimestamp +", reffereeEmail='" + reffereeEmail + '\'' +", fofoAssociate=" + fofoAssociate +'}';}}