Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

import java.time.LocalDateTime;

import com.spice.profitmandi.dao.enumuration.catalog.UpgradeOfferStatus;

public class CustomCustomerOffer {

        private int id;

        private int catalogId;

        private int customerOfferId;

        private int schemePayout;

        private int dealerPayout;
        private LocalDateTime createdTimestamp;

        private LocalDateTime updatedTimestamp;

        private String offerName;

        private UpgradeOfferStatus status;

        private LocalDateTime approveTimestamp;

        private boolean changePriceVisibility;

        public boolean isChangePriceVisibility() {
                return changePriceVisibility;
        }

        public void setChangePriceVisibility(boolean changePriceVisibility) {
                this.changePriceVisibility = changePriceVisibility;
        }

        public int getId() {
                return id;
        }

        public void setId(int id) {
                this.id = id;
        }

        public int getCatalogId() {
                return catalogId;
        }

        public void setCatalogId(int catalogId) {
                this.catalogId = catalogId;
        }

        public int getCustomerOfferId() {
                return customerOfferId;
        }

        public void setCustomerOfferId(int customerOfferId) {
                this.customerOfferId = customerOfferId;
        }

        public int getSchemePayout() {
                return schemePayout;
        }

        public void setSchemePayout(int schemePayout) {
                this.schemePayout = schemePayout;
        }

        public int getDealerPayout() {
                return dealerPayout;
        }

        public void setDealerPayout(int dealerPayout) {
                this.dealerPayout = dealerPayout;
        }

        public LocalDateTime getCreatedTimestamp() {
                return createdTimestamp;
        }

        public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
                this.createdTimestamp = createdTimestamp;
        }

        public LocalDateTime getUpdatedTimestamp() {
                return updatedTimestamp;
        }

        public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
                this.updatedTimestamp = updatedTimestamp;
        }

        public String getOfferName() {
                return offerName;
        }

        public void setOfferName(String offerName) {
                this.offerName = offerName;
        }

        public UpgradeOfferStatus getStatus() {
                return status;
        }

        public void setStatus(UpgradeOfferStatus status) {
                this.status = status;
        }

        public LocalDateTime getApproveTimestamp() {
                return approveTimestamp;
        }

        public void setApproveTimestamp(LocalDateTime approveTimestamp) {
                this.approveTimestamp = approveTimestamp;
        }

        @Override
        public String toString() {
                return "CustomCustomerOffer [id=" + id + ", catalogId=" + catalogId + ", customerOfferId=" + customerOfferId
                                + ", schemePayout=" + schemePayout + ", dealerPayout=" + dealerPayout + ", createdTimestamp="
                                + createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + ", offerName=" + offerName + ", status="
                                + status + ", approveTimestamp=" + approveTimestamp + ", changePriceVisibility=" + changePriceVisibility
                                + "]";
        }

}