whycrzg
2021-04-06 c773d0c150a4d90003bc7e3c776fe09e871cab30
1
2
3
4
5
6
7
8
9
10
11
package com.whyc.mapper;
 
import com.whyc.pojo.TestPlan;
 
import java.util.List;
 
public interface TestPlanMapper extends CustomMapper<TestPlan> {
 
    //试验数据
     List<TestPlan> searchArchiveExperimentData(TestPlan testPlan);
}