All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mq.aliyun.example.model.Dish Maven / Gradle / Ivy

The newest version!
package com.mq.aliyun.example.model;

/**
 * Created by wangziqing on 17/7/25.
 */
public class Dish {
    private Long id;
    private String name;

    public Dish(Long id, String name) {
        this.id = id;
        this.name = name;
    }

    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;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy