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<>();
|
}
|
}
|