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

📄 application.java

📁 使用spring ,hibernate 框架的稽查管理系统
💻 JAVA
字号:
package com.je.ims.hibernate;

import java.util.Date;


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

public class Application  implements java.io.Serializable {


    // Fields    

     private Long id;
     private String application;
     private String engName;
     private String url;
     private String serId;
     private String userName;
     private String userUnit;
     private Date uploadDate;


    // Constructors

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

	/** minimal constructor */
    public Application(String application, String engName, String url) {
        this.application = application;
        this.engName = engName;
        this.url = url;
    }
    
    /** full constructor */
    public Application(String application, String engName, String url, String serId, String userName, String userUnit, Date uploadDate) {
        this.application = application;
        this.engName = engName;
        this.url = url;
        this.serId = serId;
        this.userName = userName;
        this.userUnit = userUnit;
        this.uploadDate = uploadDate;
    }

   
    // Property accessors

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

    public String getApplication() {
        return this.application;
    }
    
    public void setApplication(String application) {
        this.application = application;
    }

    public String getEngName() {
        return this.engName;
    }
    
    public void setEngName(String engName) {
        this.engName = engName;
    }

    public String getUrl() {
        return this.url;
    }
    
    public void setUrl(String url) {
        this.url = url;
    }

    public String getSerId() {
        return this.serId;
    }
    
    public void setSerId(String serId) {
        this.serId = serId;
    }

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

    public String getUserUnit() {
        return this.userUnit;
    }
    
    public void setUserUnit(String userUnit) {
        this.userUnit = userUnit;
    }

    public Date getUploadDate() {
        return this.uploadDate;
    }
    
    public void setUploadDate(Date uploadDate) {
        this.uploadDate = uploadDate;
    }
    
    public void trim(){
    	this.application = this.application.trim();
    	this.engName = this.engName.trim();
    	this.url = this.url.trim();
    }
   








}

⌨️ 快捷键说明

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