huang
6 天以前 9571229a2013472dc701ecf5767f2873b36d8f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mes.erp.service.impl;
 
import com.mes.erp.service.ErpService;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/14 20:07
 * @Description:
 */
@Service
public class ErpServiceImpl implements ErpService {
    @Override
    public List<String> queryFilmsList() {
        return new ArrayList<>();
    }
}