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

jasmine.demo.entity.User Maven / Gradle / Ivy

The newest version!
package jasmine.demo.entity;

import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import jasmine.framework.database.mybatisplus.entity.BaseEntity;

/**
 * @author mh.z
 */
@TableName("sys_user")
public class User extends BaseEntity {

    @TableField("user_name")
    private String userName;

    @TableField("password")
    private String password;

    @TableField("tenant_id")
    private Long tenantId;

    public String getUserName() {
        return userName;
    }

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

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public Long getTenantId() {
        return tenantId;
    }

    public void setTenantId(Long tenantId) {
        this.tenantId = tenantId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy