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
23 lines
570 B
package com.example.demo.mapper;
|
|
|
|
import com.example.demo.domain.entity.Export;
|
|
import com.example.demo.domain.vo.ExportVo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName ExportMapper
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−06-29 17:28
|
|
* @Version 1.0
|
|
**/
|
|
@Mapper
|
|
public interface ExportMapper {
|
|
ExportVo getExportData(Integer id);
|
|
int updateExportData(Long recordId, Integer state, String url, String reason, Integer dataNum);
|
|
List<Export> getExportRecord(Integer account);
|
|
|
|
}
|