(Integer state)
| 16 | public interface PayDao extends JpaRepository<Pay,String>, JpaSpecificationExecutor<Pay> { |
| 17 | |
| 18 | List<Pay> getByStateIs(Integer state); |
| 19 | |
| 20 | @Query(value = "select sum(money) from t_pay where state = 1",nativeQuery = true) |
| 21 | BigDecimal countAllMoney(); |
no outgoing calls
no test coverage detected