diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Basicuser.hbm.xml b/WebRoot/WEB-INF/classes/com/jsh/model/po/Basicuser.hbm.xml index 20a86162..5b7a04eb 100644 --- a/WebRoot/WEB-INF/classes/com/jsh/model/po/Basicuser.hbm.xml +++ b/WebRoot/WEB-INF/classes/com/jsh/model/po/Basicuser.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Depot.hbm.xml b/WebRoot/WEB-INF/classes/com/jsh/model/po/Depot.hbm.xml index e739cc73..17fdd785 100644 --- a/WebRoot/WEB-INF/classes/com/jsh/model/po/Depot.hbm.xml +++ b/WebRoot/WEB-INF/classes/com/jsh/model/po/Depot.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Logdetails.hbm.xml b/WebRoot/WEB-INF/classes/com/jsh/model/po/Logdetails.hbm.xml index c9ab0139..8f6d4429 100644 --- a/WebRoot/WEB-INF/classes/com/jsh/model/po/Logdetails.hbm.xml +++ b/WebRoot/WEB-INF/classes/com/jsh/model/po/Logdetails.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.class b/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.class deleted file mode 100644 index 3b4ef7e5..00000000 Binary files a/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.class and /dev/null differ diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.hbm.xml b/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.hbm.xml deleted file mode 100644 index e3daccea..00000000 --- a/WebRoot/WEB-INF/classes/com/jsh/model/po/Measureunit.hbm.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - 计量名称 - - - - - 计量描述 - - - - - 是否系统自带 0==系统 1==非系统 - - - - diff --git a/WebRoot/WEB-INF/classes/com/jsh/model/po/Supplier.hbm.xml b/WebRoot/WEB-INF/classes/com/jsh/model/po/Supplier.hbm.xml index a68578a1..f08bf17d 100644 --- a/WebRoot/WEB-INF/classes/com/jsh/model/po/Supplier.hbm.xml +++ b/WebRoot/WEB-INF/classes/com/jsh/model/po/Supplier.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml b/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml index 0d88f444..889128e7 100644 --- a/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml +++ b/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml @@ -22,7 +22,6 @@ - diff --git a/config/hibernate/hibernate.cfg.xml b/config/hibernate/hibernate.cfg.xml index 0d88f444..889128e7 100644 --- a/config/hibernate/hibernate.cfg.xml +++ b/config/hibernate/hibernate.cfg.xml @@ -22,7 +22,6 @@ - diff --git a/readme.txt b/readme.txt deleted file mode 100644 index 7602cfa9..00000000 --- a/readme.txt +++ /dev/null @@ -1 +0,0 @@ -jsh123 diff --git a/src/com/jsh/model/po/Basicuser.hbm.xml b/src/com/jsh/model/po/Basicuser.hbm.xml index 20a86162..5b7a04eb 100644 --- a/src/com/jsh/model/po/Basicuser.hbm.xml +++ b/src/com/jsh/model/po/Basicuser.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/src/com/jsh/model/po/Depot.hbm.xml b/src/com/jsh/model/po/Depot.hbm.xml index e739cc73..17fdd785 100644 --- a/src/com/jsh/model/po/Depot.hbm.xml +++ b/src/com/jsh/model/po/Depot.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/src/com/jsh/model/po/Logdetails.hbm.xml b/src/com/jsh/model/po/Logdetails.hbm.xml index c9ab0139..8f6d4429 100644 --- a/src/com/jsh/model/po/Logdetails.hbm.xml +++ b/src/com/jsh/model/po/Logdetails.hbm.xml @@ -2,7 +2,7 @@ - + diff --git a/src/com/jsh/model/po/Measureunit.hbm.xml b/src/com/jsh/model/po/Measureunit.hbm.xml deleted file mode 100644 index e3daccea..00000000 --- a/src/com/jsh/model/po/Measureunit.hbm.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - 计量名称 - - - - - 计量描述 - - - - - 是否系统自带 0==系统 1==非系统 - - - - diff --git a/src/com/jsh/model/po/Measureunit.java b/src/com/jsh/model/po/Measureunit.java deleted file mode 100644 index 995e156f..00000000 --- a/src/com/jsh/model/po/Measureunit.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.jsh.model.po; - -import java.sql.Timestamp; - -@SuppressWarnings("serial") -public class Measureunit implements java.io.Serializable -{ - private Long id; - private String unitname; - private String description; - private Short isystem; - - public Measureunit() - { - - } - - public Measureunit(Long id) - { - this.id = id; - } - - public Measureunit(String unitname, Timestamp createtime, Long creator, - Timestamp updatetime, Long updator, String description, - Short isystem) - { - this.unitname = unitname; - this.description = description; - this.isystem = isystem; - } - - public Long getId() - { - return this.id; - } - - public void setId(Long id) - { - this.id = id; - } - - public String getUnitname() - { - return this.unitname; - } - - public void setUnitname(String unitname) - { - this.unitname = unitname; - } - - public String getDescription() - { - return this.description; - } - - public void setDescription(String description) - { - this.description = description; - } - - public Short getIsystem() - { - return this.isystem; - } - - public void setIsystem(Short isystem) - { - this.isystem = isystem; - } - -} \ No newline at end of file diff --git a/src/com/jsh/model/po/Supplier.hbm.xml b/src/com/jsh/model/po/Supplier.hbm.xml index a68578a1..f08bf17d 100644 --- a/src/com/jsh/model/po/Supplier.hbm.xml +++ b/src/com/jsh/model/po/Supplier.hbm.xml @@ -2,7 +2,7 @@ - +