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

📄 log.java

📁 Struts+Spring+Hibernate实现的在线拍卖系统,去掉了这些组件自身的jar包
💻 JAVA
字号:
package org.bestteam.domain;

import java.util.Date;


/**
 * Log generated by MyEclipse - Hibernate Tools
 */

public class Log  implements java.io.Serializable {


    // Fields    

     private Integer logId;
     private Date startTime;
     private String description;
     private String logType;
     private String manipulator;


    // Constructors

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

    
    /** full constructor */
    public Log(Date startTime, String description, String logType, String manipulator) {
        this.startTime = startTime;
        this.description = description;
        this.logType = logType;
        this.manipulator = manipulator;
    }

   
    // Property accessors

    public Integer getLogId() {
        return this.logId;
    }
    
    public void setLogId(Integer logId) {
        this.logId = logId;
    }

    public Date getStartTime() {
        return this.startTime;
    }
    
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }

    public String getDescription() {
        return this.description;
    }
    
    public void setDescription(String description) {
        this.description = description;
    }

    public String getLogType() {
        return this.logType;
    }
    
    public void setLogType(String logType) {
        this.logType = logType;
    }

    public String getManipulator() {
        return this.manipulator;
    }
    
    public void setManipulator(String manipulator) {
        this.manipulator = manipulator;
    }
   








}

⌨️ 快捷键说明

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