LLL пре 1 година
родитељ
комит
adfc7402e6

+ 1 - 0
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/inventory/entity/ItdmSampleClassification.java

@@ -43,6 +43,7 @@ public class ItdmSampleClassification implements Serializable {
 	/**上级id*/
 	@Excel(name = "上级id", width = 15)
     @ApiModelProperty(value = "上级id")
+    @Dict(dictTable = "itdm_sample_classification", dicText = "name", dicCode = "id")
     private java.lang.String pid;
 	/**状态*/
 	@Excel(name = "状态", width = 15, dicCode = "sample_type_status")

+ 1 - 1
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/inventory/service/impl/ItdmSampleInventoryServiceImpl.java

@@ -21,7 +21,7 @@ public class ItdmSampleInventoryServiceImpl extends ServiceImpl<ItdmSampleInvent
     @SuppressWarnings("all")
     private ItdmSampleInventoryMapper itdmSampleInventoryMapper;
 
-
+    /**通过样品条码查询样品库存信息*/
     public ItdmSampleInventory getByBarCode(String barCode){
         return itdmSampleInventoryMapper.getByBarCode(barCode);
     }