package com.cheikh.lazywaimai.model.bean; /** * Created by comet on 16/1/30. */ public class ExtraFee { long id; String name; String description; double price; 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 String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } }