廖井涛
2024-04-10 e7a66108936ced80e112ab13f4b3aec1a6784bf7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.example.erp.mapper.pp;
 
 
import com.example.erp.entity.pp.FlowCard;
import com.example.erp.entity.sd.OrderGlassDetail;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.sql.Date;
import java.util.List;
import java.util.Map;
 
@Mapper
public interface ReportMapper {
 
    List<Map<String, String>> processCardProgressMp(String orderId);
}