19 lines
521 B
Plaintext
19 lines
521 B
Plaintext
package com.cmeim.biz.repository;
|
|
|
|
import com.cmeim.biz.po.MmBoxBarDetailLog;
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
/**
|
|
* @ClassName
|
|
* @Description TODO 修改日志表
|
|
* @Author guchengbo
|
|
* @Date 2022/4/27 10:42
|
|
* @Version 1.0
|
|
**/
|
|
@Repository
|
|
public interface MmBoxBarDetailLogRepository extends JpaRepository<MmBoxBarDetailLog, Long>, JpaSpecificationExecutor {
|
|
|
|
}
|