|
@@ -0,0 +1,25 @@
|
|
|
+package org.jeecg.modules.itdmTestPlan.mapper;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+import org.apache.ibatis.annotations.Select;
|
|
|
+import org.jeecg.modules.itdmDevice.entity.ItdmDevice;
|
|
|
+import org.jeecg.modules.itdmTestPlan.entity.ItdmTestPlan;
|
|
|
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 试验计划
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2023-05-21
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+public interface ItdmTestPlanMapper extends BaseMapper<ItdmTestPlan> {
|
|
|
+
|
|
|
+// @Select("select a.weituo_id, c.weituo_no, a.yangpin_id, d.sample_name, a.id, a.test_items, b.shebei_id, e.device_name, b.pm\n" +
|
|
|
+// "from itdm_weituo_yangpin_extend a\n" +
|
|
|
+// " left join itdm_test_plan b\n" +
|
|
|
+// " on a.id = b.test_items_id" )
|
|
|
+// List<ItdmDevice> queryList();
|
|
|
+
|
|
|
+}
|