自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 b9dfde3882128f8d7afaeba714b8f14ec8d482cf
src/main/java/com/zy/common/service/erp/ErpService.java
@@ -5,8 +5,6 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@@ -15,7 +13,6 @@
 */
@Slf4j
@Service
@RestController
public class ErpService {
    @Autowired
@@ -28,7 +25,6 @@
    /**
     * 获取GOODS表
     */
    @GetMapping("erp/goods/list")
    public List<Goods> selectGoods(Integer IsGetData) {
        String sql = "select * from InStockBillEntry where IsGetData = '" + IsGetData +"'";
        return erpSqlServer.select(sql, Goods.class);