CreatorMapper.java 801 B

1234567891011121314151617181920212223
  1. package com.zx.dataservice.mapper3;
  2. import com.zx.dataservice.pojo.HistoryPojo;
  3. import com.zx.dataservice.pojo.StockHistPojo;
  4. import com.zx.dataservice.pojo.StockRestPojo;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. @Mapper
  8. public interface CreatorMapper {
  9. HistoryPojo selectHistory(@Param("tableName") String tableName);
  10. void insertRt(@Param("info") StockRestPojo stockRestPojo, @Param("tableName") String tableName);
  11. StockRestPojo selectRtLimitOne(@Param("tableName") String tableName);
  12. void deleteHistoryTemp(@Param("tableName") String tableName);
  13. StockRestPojo selectRtAll(@Param("tableName") String tableName);
  14. void insertHistory(@Param("info") StockHistPojo stockHistPojo, @Param("tableName") String histTableName);
  15. }