package com.cheikh.lazywaimai.model.bean; import com.google.gson.annotations.SerializedName; /** * Created by comet on 16/1/30. */ public class DiscountInfo { @SerializedName("id") long id; @SerializedName("name") String name; @SerializedName("price") double price; @SerializedName("description") String description; @SerializedName("icon_name") String iconName; @SerializedName("icon_color") String iconColor; @SerializedName("priority") int priority; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getIconName() { return iconName; } public void setIconName(String iconName) { this.iconName = iconName; } public String getIconColor() { return iconColor; } public void setIconColor(String iconColor) { this.iconColor = iconColor; } public int getPriority() { return priority; } public void setPriority(int priority) { this.priority = priority; } }