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

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

There is a newer version: 1.10.3
Show newest version
package com.mybatisflex.test.model;

import java.util.Date;
import java.util.List;

/**
 * 复杂查询接收类
 * 演示问题。
 *
 * @author 王帅
 * @since 2024-10-03
 */
@SuppressWarnings({"LombokGetterMayBeUsed", "LombokSetterMayBeUsed"})
public class AccountView {

    private Long id;
    private String userName;
    private Date birthday;

    private List accountList;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public Date getBirthday() {
        return birthday;
    }

    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }

    public List getAccountList() {
        return accountList;
    }

    public void setAccountList(List accountList) {
        this.accountList = accountList;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy