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

com.hanframework.mojito.test.pojo.User Maven / Gradle / Ivy

There is a newer version: 1.0.2-RELEASE
Show newest version
package com.hanframework.mojito.test.pojo;

import java.io.Serializable;

/**
 * @author liuxin
 * 2020-07-25 21:32
 */
public class User implements Serializable, TestSerialize {

    private String name = "xiaoming";

    private int age = 23;

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

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getName() {
        return name;
    }

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy