| | |
| | | |
| | | import com.fgkj.dto.Batt_param_low; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | public interface Batt_param_lowMapper{ |
| | | |
| | | public boolean add(Object obj); |
| | | |
| | | public boolean update(Object obj); |
| | | @Update("update web_site.tb_batt_param_low set low_value=#{low_value},low_method=#{low_method} where low_type=#{low_type} and low_nametype=#{low_nametype}") |
| | | public int update(Batt_param_low obj); |
| | | |
| | | //修改 |
| | | public boolean del(Object obj); |