View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class ProviderDetailModel {private String name;private String accountNo;private int pickup;private float bundleWeightLimit;private boolean groupShipmentAllowed;private boolean provideractive;private String email;private String mobile;private float maxCODLimit;public String getName() {return name;}public void setName(String name) {this.name = name;}public String getAccountNo() {return accountNo;}public void setAccountNo(String accountNo) {this.accountNo = accountNo;}public int getPickup() {return pickup;}public void setPickup(int pickup) {this.pickup = pickup;}public float getBundleWeightLimit() {return bundleWeightLimit;}public void setBundleWeightLimit(float bundleWeightLimit) {this.bundleWeightLimit = bundleWeightLimit;}public boolean isGroupShipmentAllowed() {return groupShipmentAllowed;}public void setGroupShipmentAllowed(boolean groupShipmentAllowed) {this.groupShipmentAllowed = groupShipmentAllowed;}public boolean isProvideractive() {return provideractive;}public void setProvideractive(boolean provideractive) {this.provideractive = provideractive;}public String getEmail() {return email;}public void setEmail(String email) {this.email = email;}public String getMobile() {return mobile;}public void setMobile(String mobile) {this.mobile = mobile;}public float getMaxCODLimit() {return maxCODLimit;}public void setMaxCODLimit(float maxCODLimit) {this.maxCODLimit = maxCODLimit;}}