jiazx0107@163.com
2023-05-22 febc84c3cfb20ef148671ada09327103df056949
igds-api-phone/src/main/java/com/ld/igds/phone35/service/impl/HPhoneServiceImpl.java
@@ -584,8 +584,8 @@
    * @param endTime
    * @return
    */
   public List<MPlan> listPlan(String companyId, String type, Date startTime, Date endTime) {
      String hql = " from " + MPlan.class.getName() + " where companyId =:companyId";
   public List<InoutPlan> listPlan(String companyId, String type, Date startTime, Date endTime) {
      String hql = " from " + InoutPlan.class.getName() + " where companyId =:companyId";
      Map<String, Object> args = new HashMap<String, Object>();
      args.put("companyId", companyId);
@@ -614,9 +614,9 @@
    * @param planId
    * @return
    */
   public List<MPlanDetail> getPlanDetail(String planId) {
   public List<InoutPlanDetail> getPlanDetail(String planId) {
      String hql = " from " + MPlanDetail.class.getName() + " where planId =:planId";
      String hql = " from " + InoutPlanDetail.class.getName() + " where planId =:planId";
      Map<String, Object> args = new HashMap<String, Object>();
      args.put("planId", planId);
@@ -631,8 +631,8 @@
    * @param endTime
    * @return
    */
   public List<MContract> listContract(String companyId, Date startTime, Date endTime){
      String hql = " from " + MContract.class.getName() + " where companyId =:companyId";
   public List<InoutContract> listContract(String companyId, Date startTime, Date endTime){
      String hql = " from " + InoutContract.class.getName() + " where companyId =:companyId";
      Map<String, Object> args = new HashMap<String, Object>();
      args.put("companyId", companyId);