outstoredocument.java

来自「这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天」· Java 代码 · 共 107 行

JAVA
107
字号
package cn.bway.foreigntrade.repertory.outstore.document.model;



/**
 * Outstoredocument generated by MyEclipse Persistence Tools
 */

public class Outstoredocument  implements java.io.Serializable {


    // Fields    

     private String id;
     private String outtime;
     private String storetype;
     private String outman;
     private String notes;
     private String documentname;
     private String checks;


    // Constructors

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

    
    /** full constructor */
    public Outstoredocument(String outtime, String storetype, String outman, String notes, String documentname, String checks) {
        this.outtime = outtime;
        this.storetype = storetype;
        this.outman = outman;
        this.notes = notes;
        this.documentname = documentname;
        this.checks = checks;
    }

   
    // Property accessors

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

    public String getOuttime() {
        return this.outtime;
    }
    
    public void setOuttime(String outtime) {
        this.outtime = outtime;
    }

    public String getStoretype() {
        return this.storetype;
    }
    
    public void setStoretype(String storetype) {
        this.storetype = storetype;
    }

    public String getOutman() {
        return this.outman;
    }
    
    public void setOutman(String outman) {
        this.outman = outman;
    }

    public String getNotes() {
        return this.notes;
    }
    
    public void setNotes(String notes) {
        this.notes = notes;
    }

    public String getDocumentname() {
        return this.documentname;
    }
    
    public void setDocumentname(String documentname) {
        this.documentname = documentname;
    }

    public String getChecks() {
        return this.checks;
    }
    
    public void setChecks(String checks) {
        this.checks = checks;
    }
   








}

⌨️ 快捷键说明

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