whycrzg
2021-05-18 cabd8ad109f93fbfb76818a239189c1a5a8d1e1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.whyc.mapper;
 
 
import com.whyc.pojo.Experiment;
import com.whyc.pojo.ExperimentWindingStep1;
 
import java.util.List;
 
public interface ExperimentWindingStep1Mapper extends CustomMapper<ExperimentWindingStep1>{
    int deleteByPrimaryKey(Integer id);
 
    int insert(ExperimentWindingStep1 record);
 
    int insertSelective(ExperimentWindingStep1 record);
 
    ExperimentWindingStep1 selectByPrimaryKey(Integer id);
 
    int updateByPrimaryKeySelective(ExperimentWindingStep1 record);
 
    int updateByPrimaryKey(ExperimentWindingStep1 record);
 
    int delExperimentWindingbyId(String experimentId);
 
    //根据experiment_id编辑试验数据
    int updateById(ExperimentWindingStep1 windingStep1);
}