/** 查询抓拍过图片车辆ID */ public List<Integer> selectCarIdByHisImg(CapHistoryInfo capHistoryInfo) { return captureDao.selectCarIdByHisImg(capHistoryInfo); }
/** 查询历史图片记录 */ public List<CapHistoryInfo> selectCapHistoryList(CapHistoryInfo capHistoryInfo) { return captureDao.selectCapHistoryList(capHistoryInfo); }
/** 更新用户参数 */ public int updateUserParamByUserId(UserParam uParam) { return captureDao.updateUserParamByUserId(uParam); }
/** 查询用户参数 */ public UserParam selectUserParamByUserId(Integer userId) { return captureDao.selectUserParamByUserId(userId); }
/** 初始化添加用户参数设置 */ public int insertUserParam(UserParam uParam) { return captureDao.insertUserParam(uParam); }