packagetrack.service;importcommon.model.*;importjava.util.List;importjava.util.Map;/** * Created by mxq on 2017/12/27. */publicinterfaceTrackAccountService{List<TrackAccount4Web>findAll(Useruser);//到期提醒关闭Reminderforbiden(Useruser,Reminderresource);//到期提醒开启Reminderenable(Useruser,Reminderresource);//缴费Paymentpay(Useruser,Paymentresource);//回访BackVisitvisit(Useruser,BackVisitresource);//查询功能使用情况Map<String,Integer>findFunTimes(Longaccount,StringstartDate,StringendDate);List<Reminder>findRed(Longaccount,StringstartDate,StringendDate);List<BackVisit>findVisit(Longaccount,StringstartDate,StringendDate);List<Payment>findPay(Longaccount,StringstartDate,StringendDate);}