| | |
| | | package com.whyc.mapper; |
| | | |
| | | |
| | | import com.whyc.pojo.Experiment; |
| | | import com.whyc.pojo.ExperimentWindingStep1; |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.junit.runners.Parameterized; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | //根据试验ID查询到uid在tb_user表查询real_name |
| | | String getRealName(String experimentId); |
| | | |
| | | List<ExperimentWindingStep1> selectlistByCondition(@Param(value = "rzLink") int rzLink,@Param(value = "step") int step); |
| | | List<ExperimentWindingStep1> selectlistByCondition(@Param(value = "experimentId")String experimentId, @Param(value = "rzLink") int rzLink, @Param(value = "step") int step); |
| | | |
| | | //完成试验 |
| | | int updateRzFlag(String id); |