You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
570 B

5 days ago
5 days ago
5 days ago
5 days ago
  1. package com.example.demo.mapper;
  2. import com.example.demo.domain.entity.Export;
  3. import com.example.demo.domain.vo.ExportVo;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * @program: GOLD
  8. * @ClassName ExportMapper
  9. * @description:
  10. * @author: huangqizhen
  11. * @create: 202506-29 17:28
  12. * @Version 1.0
  13. **/
  14. @Mapper
  15. public interface ExportMapper {
  16. ExportVo getExportData(Integer id);
  17. int updateExportData(Long recordId, Integer state, String url, String reason, Integer dataNum);
  18. List<Export> getExportRecord(Integer account);
  19. }