XklAmpReportRespository.java 538 Bytes
package com.xkl.repository;

import com.xkl.domain.XklAmpReportEntity;
import org.springframework.data.repository.CrudRepository;

import java.util.List;

/**
 * Created by win7 on 2016/11/20.
 */
public interface XklAmpReportRespository extends CrudRepository<XklAmpReportEntity, Long> {
    //member_id
    public List<XklAmpReportEntity> findByMemberIdAndStatus(long member_id,int status);
    public List<XklAmpReportEntity> findByStatus(int status);
    public List<XklAmpReportEntity> findByCompanyIdIn(List<Long> companyIdList);
}