Browse Source

删除无用类

周浩 9 years ago
parent
commit
5e450972c3

+ 0 - 38
hsweb-web-bean/src/main/java/org/hsweb/web/bean/common/database/TableField.java

@@ -1,38 +0,0 @@
-package org.hsweb.web.bean.common.database;
-
-/**
- * 数据库表字段
- * Created by zhouhao on 16-4-21.
- */
-public class TableField {
-    //原型
-    private Object prototype;
-    private String title;
-    private String name;
-
-    public String getTitle() {
-        if (title == null)
-            title = name;
-        return title;
-    }
-
-    public void setTitle(String title) {
-        this.title = title;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    public Object getPrototype() {
-        return prototype;
-    }
-
-    public void setPrototype(Object prototype) {
-        this.prototype = prototype;
-    }
-}