whycxzp
2021-05-20 3da521b9e0a86dd9cc0bb28b2dfa0e7084ffc00f
1
2
3
4
5
6
7
8
9
10
11
package com.whyc.mapper;
 
import com.whyc.pojo.ExperimentPoint;
import org.apache.ibatis.annotations.Update;
 
import java.util.Date;
 
public interface ExperimentPointMapper extends CustomMapper<ExperimentPoint>{
    @Update("update `db_3.5mw_web`.tb_experiment_point set end_time = #{date} where id = #{id}")
    Integer updateEndTime(Integer id, Date date);
}