Files
system-jibei/comService/src/main/java/com/njcn/mapper/configuration/LineDetailMapper.java

20 lines
416 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.njcn.mapper.configuration;
import com.njcn.pojo.configuration.LineDetail;
import com.njcn.pojo.excelBody.LineDetailExcelBody;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
public interface LineDetailMapper extends Mapper<LineDetail> {
Integer getAmounts(String time);
//获取该表所有数据提供excel导出
List<LineDetailExcelBody> selectAllExcelData();
}