XklInterKeyRespository.java 346 Bytes
package com.xkl.repository;

import com.xkl.domain.User;
import com.xkl.domain.XklInterKeyEntity;
import org.springframework.data.repository.CrudRepository;

/**
 * Created by win7 on 2016/11/20.
 */
public interface XklInterKeyRespository extends CrudRepository<XklInterKeyEntity, Long> {
    public XklInterKeyEntity findById(int companyId);
}