whyczh
2021-06-03 ab03d93d2a60307cc30d33215fff12a55fc41cec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.whyc.mapper;
 
 
import com.whyc.pojo.Experiment;
import com.whyc.pojo.ExperimentWindingStep2;
 
public interface ExperimentWindingStep2Mapper extends CustomMapper<ExperimentWindingStep2>{
    int deleteByPrimaryKey(Integer id);
 
    int insert(ExperimentWindingStep2 record);
 
    int insertSelective(ExperimentWindingStep2 record);
 
    ExperimentWindingStep2 selectByPrimaryKey(Integer id);
 
    int updateByPrimaryKeySelective(ExperimentWindingStep2 record);
 
    int updateByPrimaryKey(ExperimentWindingStep2 record);
 
    int delExperimentWindingbyId(String experimentId);
 
    //根据experiment_id编辑试验数据
    int updateById(ExperimentWindingStep2 windingStep2);
}