⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 voteuser.java

📁 天乙社区6.0是一套基于JAVA技术的网络虚拟社区
💻 JAVA
字号:
package com.laoer.bbscs.bean;

import java.io.Serializable;import org.apache.commons.lang.builder.ToStringBuilder;

/** @author Hibernate CodeGenerator */
public class VoteUser implements Serializable {

    /** identifier field */
    private Long id;

    /** persistent field */
    private long voteID;

    /** persistent field */
    private long voteUserID;

    /** persistent field */
    private long voteTime;

    /** full constructor */
    public VoteUser(long voteID, long voteUserID, long voteTime) {
        this.voteID = voteID;
        this.voteUserID = voteUserID;
        this.voteTime = voteTime;
    }

    /** default constructor */
    public VoteUser() {
    }

    public Long getId() {
        return this.id;
    }

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

    public long getVoteID() {
        return this.voteID;
    }

    public void setVoteID(long voteID) {
        this.voteID = voteID;
    }

    public long getVoteUserID() {
        return this.voteUserID;
    }

    public void setVoteUserID(long voteUserID) {
        this.voteUserID = voteUserID;
    }

    public long getVoteTime() {
        return this.voteTime;
    }

    public void setVoteTime(long voteTime) {
        this.voteTime = voteTime;
    }

    public String toString() {
        return new ToStringBuilder(this)
            .append("id", getId())
            .toString();
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -