/**
     *  order by gs.updateDate desc     
     *  SELECT gs FROM GoodStatus gs WHERE gs IN(
     * @param goodId
     * @return
     */
    @Query("SELECT gs FROM Good g left join g.goodStatus as gs where g.id = :goodId order by gs.updateDate desc ")
    public Set<GoodStatus> fingByGoodId(@Param("goodId")Long goodId);
   

相关文章:

  • 2021-11-21
  • 2022-01-22
  • 2021-08-30
  • 2021-12-24
  • 2021-06-19
猜你喜欢
  • 2021-06-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-20
相关资源
相似解决方案