Examples of addDepreciationCaculator()


Examples of com.narirelays.ems.services.EquipmentManagementService.addDepreciationCaculator()

  public String addDepreciationCaculator()//根据设备id,添加计算器;并根据输入计算资产净值,返回;一个设备只能对应0个或一个计算器,需判断
  {
    EquipmentManagementService equipmentManagementService = (EquipmentManagementService)StorageService.ctx.getBean("equipmentManagementService");
    if(equipmentManagementService!=null)
    {
      resultInfo = equipmentManagementService.addDepreciationCaculator(request.getParameter("equipment_id"),request.getParameter("algorithm_id"),parameterMap);
    }
    return SUCCESS;
  }
   
  public String deleteDepreciationCaculator()//根据计设备id,删除计算器
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.