Rev 31249 | Rev 34118 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.time.LocalDateTime;import java.util.List;import com.spice.profitmandi.dao.enumuration.dtr.CommunicationType;import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;public class CreateRefferalRequest {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 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;}}