|
package com.example.erp.service.pp;
|
|
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson.JSONObject;
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
import com.example.erp.entity.pp.FlowCard;
|
import com.example.erp.mapper.pp.ReportMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.sql.Date;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
@Service
|
@DS("sd")
|
public class ReportService {
|
@Autowired
|
ReportMapper reportMapper;
|
|
|
public Map<String, Object> processCardProgressSv(String orderId, FlowCard flowCard) {
|
Map<String, Object> map = new HashMap<>();
|
map.put("data", reportMapper.processCardProgressMp(orderId, flowCard));
|
return map;
|
}
|
}
|