src/main/java/com/zy/asrs/service/impl/DocTypeServiceImpl.java
@@ -19,7 +19,7 @@ if (Cools.isEmpty(docName)) { return null; } DocType docType = this.selectOne(new EntityWrapper<DocType>().eq("doc_name", docName)); DocType docType = this.selectById(docName); if (docType == null) { long docId = 1L; DocType last = this.selectOne(new EntityWrapper<DocType>().orderBy("doc_id", false)); @@ -31,6 +31,7 @@ docType.setDocName(docName); if (null != pakin) { docType.setPakin(pakin ? 1 : 0); docType.setPakout(pakin ? 0 : 1); } docType.setStatus(1); docType.setCreateTime(new Date());