whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
src/main/java/com/fgkj/mapper/impl/Batt_param_lowMapper.java
@@ -2,16 +2,23 @@
import java.util.List;
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);
   public List searchAll() ;
   @Select("select num,low_type,low_nametype,low_value,low_method  from web_site.tb_batt_param_low")
   public List<Batt_param_low> searchAll() ;
   public List serchByCondition(Object obj);