whycxzp
2021-07-26 8c189b243bfbbacb2ab1ce79f4e1ff22708f125a
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);
}