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

com.mybatisflex.test.model.AccountDto Maven / Gradle / Ivy

The newest version!
package com.mybatisflex.test.model;

import java.util.List;
import java.util.Map;

public class AccountDto {

    private Long id;

    private String name;

    private List> other;

    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 List> getOther() {
        return other;
    }

    public void setOther(List> other) {
        this.other = other;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy