doucumentfolder.java

来自「办公自动化项目」· Java 代码 · 共 42 行

JAVA
42
字号
package com.t60.oa.po;

import com.t60.oa.po.base.BaseDoucumentFolder;

/**
 * This is the object class that relates to the DoucumentFolder table.
 * Any customizations belong here.
 */
public class DoucumentFolder extends BaseDoucumentFolder {

/*[CONSTRUCTOR MARKER BEGIN]*/
        public DoucumentFolder () {
                super();
        }

        /**
         * Constructor for primary key
         */
        public DoucumentFolder (java.lang.String _id) {
                super(_id);
        }

        /**
         * Constructor for required fields
         */
        public DoucumentFolder (
                java.lang.String _id,
                Employee _owner,
                Employee _edite,
                java.lang.String _name) {

                super (
                        _id,
                        _owner,
                        _edite,
                        _name
                           );
        }

/*[CONSTRUCTOR MARKER END]*/
}

⌨️ 快捷键说明

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