From 4363689098dbf746f353cadbb9ec1a632be66609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Sun, 4 Mar 2018 23:28:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/jsh/model/po/Assetcategory.java | 67 ------------------- .../resources/hibernate/Assetcategory.hbm.xml | 26 ------- 2 files changed, 93 deletions(-) delete mode 100644 src/main/java/com/jsh/model/po/Assetcategory.java delete mode 100644 src/main/resources/hibernate/Assetcategory.hbm.xml diff --git a/src/main/java/com/jsh/model/po/Assetcategory.java b/src/main/java/com/jsh/model/po/Assetcategory.java deleted file mode 100644 index 302c6971..00000000 --- a/src/main/java/com/jsh/model/po/Assetcategory.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.jsh.model.po; - -@SuppressWarnings("serial") -public class Assetcategory implements java.io.Serializable -{ - private Long id; - private String assetname; - private Short isystem; - private String description; - - public Assetcategory() - { - - } - - public Assetcategory(Long id) - { - this.id = id ; - } - - public Assetcategory(String assetname, Short isystem, String description) - { - this.assetname = assetname; - this.isystem = isystem; - this.description = description; - } - - public Long getId() - { - return this.id; - } - - public void setId(Long id) - { - this.id = id; - } - - public String getAssetname() - { - return this.assetname; - } - - public void setAssetname(String assetname) - { - this.assetname = assetname; - } - - public Short getIsystem() - { - return this.isystem; - } - - public void setIsystem(Short isystem) - { - this.isystem = isystem; - } - - public String getDescription() - { - return this.description; - } - - public void setDescription(String description) - { - this.description = description; - } -} \ No newline at end of file diff --git a/src/main/resources/hibernate/Assetcategory.hbm.xml b/src/main/resources/hibernate/Assetcategory.hbm.xml deleted file mode 100644 index 72b09816..00000000 --- a/src/main/resources/hibernate/Assetcategory.hbm.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - 资产类型名称 - - - - - 是否系统自带 0==系统 1==非系统 - - - - - 描述信息 - - - -