|
@@ -1,5 +1,6 @@
|
|
|
package com.xlht.xlhtproject.service.impl;
|
|
|
|
|
|
+import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -14,7 +15,7 @@ import com.xlht.xlhtproject.service.ITShuju1Service;
|
|
|
* @date 2024-09-19
|
|
|
*/
|
|
|
@Service
|
|
|
-public class TShuju1ServiceImpl implements ITShuju1Service
|
|
|
+public class TShuju1ServiceImpl implements ITShuju1Service
|
|
|
{
|
|
|
@Autowired
|
|
|
private TShuju1Mapper tShuju1Mapper;
|
|
@@ -90,4 +91,9 @@ public class TShuju1ServiceImpl implements ITShuju1Service
|
|
|
{
|
|
|
return tShuju1Mapper.deleteTShuju1ByID(ID);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<TShuju1> selectTShuju1ListGroupByAssayId(TShuju1 req) {
|
|
|
+ return tShuju1Mapper.selectTShuju1ListGroupByAssayId(req);
|
|
|
+ }
|
|
|
}
|