com.sinszm.sofa.repository.TsBuyerDetailRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter-order Show documentation
Show all versions of szm-sofa-boot-starter-order Show documentation
高可用服务框架,业务订单基础功能操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa.repository;
import com.sinszm.sofa.model.TsBuyerDetail;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Optional;
/**
* 买家详细
*
* @author admin
*/
public interface TsBuyerDetailRepository extends JpaRepository {
/**
* 根据订单ID获取买家信息
*
* @param orderId 订单id
* @return {Optional}
*/
Optional findOneByOrderId(String orderId);
}