浏览代码

标准术语维护

zhaops 4 年之前
父节点
当前提交
507d8fbd4e

+ 1 - 0
src/main/java/com/diagbot/repository/MedicineCodeRepository.java

@@ -22,6 +22,7 @@ public interface MedicineCodeRepository extends Neo4jRepository<MedCodeName, Lon
             "n.拼音编码 = :#{#entityInfo.pycode}," +
             "n.静态知识标识 = :#{#entityInfo.is_kl}," +
             "n.状态 = :#{#entityInfo.status}," +
+            "n.最小包装数量 = {min_pack_num}," +
             "n.注册剂型 = {reg_JiXin}," +
             "n.药品本位码 = {benWei_Code}," +
             "n.最小包装单位 = {min_pack_unit}," +

+ 5 - 1
src/main/java/com/diagbot/vo/EntityPageVO.java

@@ -10,7 +10,11 @@ import lombok.Setter;
  */
 @Getter
 @Setter
-public class EntityPageVO extends EntityInfoVO{
+public class EntityPageVO {
+    private String name;
+    private String labelType;
+    private Integer status;
+    private Integer is_kl;
     private int number = 0;
     private int size = 10;
 }