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

📄 logsform.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
package cn.bway.foreigntrade.operation.guestmanage.logs.form;

import cn.bway.common.form.BaseForm;



/**
 * Logs generated by MyEclipse Persistence Tools
 */

public class LogsForm  extends BaseForm implements java.io.Serializable {


    // Fields    

	 private String id;
     private String names;
     private String codes;
     private String times;
     private String operations;
     private String documentid;
     private String tablename;
     private String types;


    // Constructors

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

    
    /** full constructor */
    public LogsForm(String names, String codes, String times, String operations, String documentid, String types) {
        this.names = names;
        this.codes = codes;
        this.times = times;
        this.operations = operations;
        this.documentid = documentid;
        this.types = types;
    }

   
    // Property accessors

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

    public String getNames() {
        return this.names;
    }
    
    public void setNames(String names) {
        this.names = names;
    }

    public String getCodes() {
        return this.codes;
    }
    
    public void setCodes(String codes) {
        this.codes = codes;
    }

    public String getTimes() {
        return this.times;
    }
    
    public void setTimes(String times) {
        this.times = times;
    }

    public String getOperations() {
        return this.operations;
    }
    
    public void setOperations(String operations) {
        this.operations = operations;
    }

    public String getDocumentid() {
        return this.documentid;
    }
    
    public void setDocumentid(String documentid) {
        this.documentid = documentid;
    }

    public String getTypes() {
        return this.types;
    }
    
    public void setTypes(String types) {
        this.types = types;
    }


	public String getTablename() {
		return tablename;
	}


	public void setTablename(String tablename) {
		this.tablename = tablename;
	}
   
   








}

⌨️ 快捷键说明

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