engage.java

来自「hibernate+spring的相片上传项目」· Java 代码 · 共 121 行

JAVA
121
字号
package org.lenovoAC.pojo;

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

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

    /** identifier field */
    private String id;

    /** nullable persistent field */
    private String condition;

    /** nullable persistent field */
    private String job;

    /** nullable persistent field */
    private Date time;

    /** nullable persistent field */
    private String phone;

    /** nullable persistent field */
    private String state;

    /** nullable persistent field */
    private String EMail;

    /** nullable persistent field */
    private String mobilePhone;

    /** full constructor */
    public Engage(String condition, String job, Date time, String phone, String state, String EMail, String mobilePhone) {
        this.condition = condition;
        this.job = job;
        this.time = time;
        this.phone = phone;
        this.state = state;
        this.EMail = EMail;
        this.mobilePhone = mobilePhone;
    }

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

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

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

    public String getCondition() {
        return this.condition;
    }

    public void setCondition(String condition) {
        this.condition = condition;
    }

    public String getJob() {
        return this.job;
    }

    public void setJob(String job) {
        this.job = job;
    }

    public Date getTime() {
        return this.time;
    }

    public void setTime(Date time) {
        this.time = time;
    }

    public String getPhone() {
        return this.phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public String getState() {
        return this.state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public String getEMail() {
        return this.EMail;
    }

    public void setEMail(String EMail) {
        this.EMail = EMail;
    }

    public String getMobilePhone() {
        return this.mobilePhone;
    }

    public void setMobilePhone(String mobilePhone) {
        this.mobilePhone = mobilePhone;
    }

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

}

⌨️ 快捷键说明

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