CZT
2024-03-02 4a61e5d538ef0b3b03f34d87d4a7c32fa18d9c5b
src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1212Rep.java
@@ -19,4 +19,14 @@
    @Query("from Fz35InoutCustomer where deptId=:deptId order by id ")
    List<Fz35InoutCustomer> listInoutCustomer(@Param("deptId") String deptId);
    /**
     * 根据信息获取客户单位信息
     *
     * @return
     */
    @Query("from Fz35InoutCustomer where companyId=:companyId order by id ")
    List<Fz35InoutCustomer> listInoutCustomerByCompanyId(@Param("companyId") String companyId);
    @Query("from Fz35InoutCustomer where id=:id order by id ")
    List<Fz35InoutCustomer> getDataById(@Param("id") String id);
}