添加动物种类

feature_ymf_dev
yangmaofu 15 hours ago
parent 3724da06cf
commit a9552be73a
  1. 1
      lab-service-api/lab-lims-api/src/main/java/org/springblade/lims/entry/WayAndBasis.java
  2. 2
      lab-service/lab-lims/src/main/java/org/springblade/lims/controller/ExamineItemController.java

@ -28,6 +28,7 @@ public class WayAndBasis {
*/
private String examineBasisId;
private String examineBasisName;
private String animalSpecies; //添加动物种类
}

@ -114,6 +114,7 @@ public class ExamineItemController extends BladeController {
ExamineWay examineWay = examineWayService.getById(wayAndBase.getExamineWayId());
if (examineWay != null) {
wayAndBase.setExamineWayName(examineWay.getName());
wayAndBase.setAnimalSpecies(examineWay.getAnimalSpecies());//添加动物种类
}
ExamineBasis examineBasis = examineBasisService.getById(wayAndBase.getExamineBasisId());
if (examineBasis != null) {
@ -145,6 +146,7 @@ public class ExamineItemController extends BladeController {
ExamineWay examineWay = examineWayService.getById(wayAndBase.getExamineWayId());
if (examineWay != null) {
wayAndBase.setExamineWayName(examineWay.getName());
wayAndBase.setAnimalSpecies(examineWay.getAnimalSpecies());//添加动物种类
}
ExamineBasis examineBasis = examineBasisService.getById(wayAndBase.getExamineBasisId());
if (examineBasis != null) {

Loading…
Cancel
Save