From 6f4a366cad9109ddc338fd13c9d43ca2ce516f6b Mon Sep 17 00:00:00 2001 From: jiazx0107@163.com <jiazx0107@163.com> Date: 星期五, 26 五月 2023 16:53:07 +0800 Subject: [PATCH] 调整计划管理模块4 --- igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java b/igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java index 0c7baa4..d24927e 100644 --- a/igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java +++ b/igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java @@ -298,8 +298,8 @@ * @param endTime * @return */ - public List<MStockChange> listStockChange(String companyId, String depotId, Date startTime, Date endTime) { - String hql = " from " + MStockChange.class.getName() + " where companyId =:companyId"; + public List<InoutStockChange> listStockChange(String companyId, String depotId, Date startTime, Date endTime) { + String hql = " from " + InoutStockChange.class.getName() + " where companyId =:companyId"; Map<String, Object> args = new HashMap<String, Object>(); args.put("companyId", companyId); @@ -331,8 +331,8 @@ * @param endTime * @return */ - public List<MLossOver> listLossOver(String companyId, String depotId, Date startTime, Date endTime) { - String hql = " from " + MLossOver.class.getName() + " where companyId =:companyId"; + public List<InoutLossOver> listLossOver(String companyId, String depotId, Date startTime, Date endTime) { + String hql = " from " + InoutLossOver.class.getName() + " where companyId =:companyId"; Map<String, Object> args = new HashMap<String, Object>(); args.put("companyId", companyId); -- Gitblit v1.9.3