You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
simple_order_demo/src/main/java/com/example/demo/repository/DiancanRespository.java

9 lines
370 B

package com.example.demo.repository;
import com.example.demo.model.Diancan;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
public interface DiancanRespository extends JpaRepository<Diancan,String>, JpaSpecificationExecutor<Diancan> {
Integer countByZhuohao(String zhuohao);
}