admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/dao/brand/BrandGoodsCaheDao.java
@@ -63,6 +63,18 @@
   
   
   /**
    * 品牌id
    * @param brandId
    */
   public void removeByBrandId(Long brandId) {
      Query query = new Query();
      query.addCriteria(Criteria.where("brandId").is(brandId));
        mongoTemplate.remove(query, BrandGoodsCahe.class);
   }
   /**
    * 删除根据时间
    * 
    * @param id
@@ -79,4 +91,17 @@
            );
        mongoTemplate.remove(query, BrandGoodsCahe.class);
   }
   /**
    * 删除根据时间
    *
    * @param id
    * @return
    */
   public void removeAgoByDate(Date createTime) {
      Query query = new Query();
      query.addCriteria(Criteria.where("createTime").lt(createTime));
        mongoTemplate.remove(query, BrandGoodsCahe.class);
   }
}