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