package com.minpay.db.table.own.mapper; import java.util.List; import java.util.Map; import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper; import com.startup.minpay.frame.jdbc.MINRowBounds; public interface MachineManageMapper extends IMINMybatisEntityMapper{ List> machineInf(Map map, MINRowBounds rows); List> machineInf(Map map); List> queryProEquRel(Map map); List> queryProductz(Map map, MINRowBounds rows); List> queryEquipment(Map map, MINRowBounds rows); //成本 String selectPredictIncome(Map m); //累计收入 String selectCountIncome(Map m); //订单数 String selectCountOrderNum(Map m); }