package com.bonus.ma.service; import java.util.List; import javax.servlet.http.HttpServletRequest; import com.bonus.lease.beans.OutStorageBean; import com.bonus.ma.beans.MachineBean; import com.bonus.sys.BaseService; import com.bonus.sys.Page; public interface MachineService extends BaseService{ public int insertBean(MachineBean o); public void deleteBatch(String chks); public void insertQRCode(MachineBean o); public List findGps(MachineBean o); public List findDev(MachineBean o); public List findCode(MachineBean o); public void updateCode(MachineBean o); public String findStockNums(MachineBean o); public List findByTaskId(String taskId,String maTypeId,String deviceCode,String batchStatus); public void inPuting(MachineBean o); public List findType(MachineBean o); public List findSums(MachineBean o); public List findModel(MachineBean o); public void deleteByTaskIdAndNums(String taskId,String maTypeId, float nums); public List getMachineStatus(); public List findByCode(MachineBean o); public MachineBean findByQrcode(MachineBean o); public void binding(MachineBean o); public void unbinding(MachineBean o); public MachineBean findByEpc(String epc); public MachineBean updateInput(String batchStatus); public MachineBean updateOut(String batchStatus); public int updateByEpc(MachineBean bean); public List findByOutFactortNum(MachineBean o); public MachineBean findById(String id); public void updateCodeByQrcode(MachineBean o); public List getBuyCompany(); public List export(MachineBean o); public void isFixedAssets(MachineBean o); public String findOneNoBinding(MachineBean o); public void intoByQrcode(MachineBean o); public MachineBean findByDevQrcode(MachineBean o); public MachineBean findByAccountName(MachineBean bean); public List findCodeByEpc(MachineBean o); public void machineBinding(MachineBean o); public void addBuyTime(MachineBean o); public void updateMachineStatus(MachineBean bean); public MachineBean findByDeviceCode(MachineBean o); public void updAcpNum(String taskId, String maTypeId, String checkNum); public List machinePicking(MachineBean o); public List machineMaterialReturn(MachineBean o); public List machineRepair(MachineBean o); public List machineOverhaul(MachineBean o); public List machineWarehousing(MachineBean o); public int updTime(String check, String nowchecktime, String nextchecktime); public int insCertificateBuId(MachineBean o); public int insMaterialsById(MachineBean o); public List findCertificateById(MachineBean o); public int updCertificateBuId(MachineBean o); public int updMaterialsById(MachineBean o); public int updProceduresById(MachineBean o); public int insProceduresById(MachineBean o); // public MachineBean findByLikeCode(MachineBean o); public List findByLikeCode(MachineBean o); public List getCode(MachineBean o); public List findByAssetNum(MachineBean o); public void updateType(MachineBean o); public List findByType(MachineBean o); public List machineScrap(MachineBean o); public List getAlOutStorageInfoList(OutStorageBean o); public List findFile(MachineBean o); public List findInfoData(MachineBean o); public int insOpmanualById(MachineBean o); public List findMachineType(MachineBean o); public List findMachineTypeId(MachineBean o); public int updateOptInfo(MachineBean o); public List findhistory(MachineBean o); public List exporthistory(MachineBean o); public List findPhotoList(MachineBean o); public List findFileList(MachineBean o); public MachineBean findByQrcodePage(MachineBean o); public int updateOpmanual(MachineBean o); public List findOptPhotoList(MachineBean o); public Integer updateInfo(List> info, MachineBean o); public int updateMachinesUrl(MachineBean o); }