Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class PartnerTargetModel {
        
        private int fofoId;
        private String storeName;
        private String email;
        private float targetValue;
        public int getFofoId() {
                return fofoId;
        }
        public void setFofoId(int fofoId) {
                this.fofoId = fofoId;
        }
        public String getStoreName() {
                return storeName;
        }
        public void setStoreName(String storeName) {
                this.storeName = storeName;
        }
        public String getEmail() {
                return email;
        }
        public void setEmail(String email) {
                this.email = email;
        }
        public float getTargetValue() {
                return targetValue;
        }
        public void setTargetValue(float targetValue) {
                this.targetValue = targetValue;
        }
        
}