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

com.gomcarter.frameworks.dubbo.demo.DemoDto Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package com.gomcarter.frameworks.dubbo.demo;

import java.io.Serializable;

/**
 * @author gomcarter
 */
public class DemoDto implements Serializable {
    private Integer id;

    private String name;

    public Integer getId() {
        return id;
    }

    public DemoDto setId(Integer id) {
        this.id = id;
        return this;
    }

    public String getName() {
        return name;
    }

    public DemoDto setName(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy