| | |
| | | package com.fzzy.async.fzzy35.repository; |
| | | |
| | | import com.fzzy.async.fzzy35.entity.Fz35InoutCustomer; |
| | | import com.fzzy.async.fzzy35.entity.Fz35MContract; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @Query("from Fz35InoutCustomer where deptId=:deptId order by id ") |
| | | List<Fz35InoutCustomer> listInoutCustomer(@Param("deptId") String deptId); |
| | | |
| | | |
| | | @Query("from Fz35InoutCustomer where khbh=:khbh ") |
| | | List<Fz35InoutCustomer> getDataById(@Param("khbh") String khbh); |
| | | } |