Blame | Last modification | View Log | RSS feed
package in.shop2020.catalog.dashboard.shared;import java.io.Serializable;import java.util.Date;import com.google.gwt.user.client.rpc.IsSerializable;public class PrivateDeal implements IsSerializable, Serializable {long item_id;long dealFreebieItemId;double dealPrice;Long startDate;Long endDate;Long dealTextOption;String dealText;boolean isCod;Long rank;Long dealFreebieOption;boolean isActive;public boolean isActive() {return isActive;}public void setActive(boolean isActive) {this.isActive = isActive;}private static final long serialVersionUID = -2982668732181652699L;public long getItem_id() {return item_id;}public void setItem_id(long item_id) {this.item_id = item_id;}public long getDealFreebieItemId() {return dealFreebieItemId;}public void setDealFreebieItemId(long dealFreebieItemId) {this.dealFreebieItemId = dealFreebieItemId;}public double getDealPrice() {return dealPrice;}public void setDealPrice(double dealPrice) {this.dealPrice = dealPrice;}public Long getStartDate() {return startDate;}public void setStartDate(Long startDate) {this.startDate = startDate;}public Long getEndDate() {return endDate;}public void setEndDate(Long endDate) {this.endDate = endDate;}public String getDealText() {return dealText;}public void setDealText(String dealText) {this.dealText = dealText;}public boolean isCod() {return isCod;}public void setCod(boolean isCod) {this.isCod = isCod;}public Long getRank() {return rank;}public void setRank(Long rank) {this.rank = rank;}public Long getDealTextOption() {return dealTextOption;}public void setDealTextOption(Long dealTextOption) {this.dealTextOption = dealTextOption;}public Long getDealFreebieOption() {return dealFreebieOption;}public void setDealFreebieOption(Long dealFreebieOption) {this.dealFreebieOption = dealFreebieOption;}}