package com.shxy.i2.dao; import com.shxy.i2.entity.Data_SF6_Qtyl; import com.shxy.i2.entity.Data_Tx; import com.shxy.i2.entity.Data_Ysp; import org.apache.ibatis.annotations.Param; import java.math.BigInteger; import java.util.Date; import java.util.List; public interface Data_TxDao { List selectUploadById(@Param("maxid") BigInteger maxid); Data_Tx selectMaxId(); Data_Tx selectNowId(@Param("date") Date date); List selectUpload(@Param("isupload") Integer isupload); int updateByPrimaryKey(@Param("isupload") Integer isupload, @Param("maxid") BigInteger maxid, @Param("idlist") List id, @Param("updateTime") Date updateTime); int updateList(@Param("isupload") Integer isupload, @Param("idlist") List id, @Param("updateTime") Date updateTime); int deleteData(@Param("time") Date time); }