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);
|
}
|