BelongsMapper.java 246 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 package com.project.demo.mapper; import com.project.demo.domain.Belongs; import org.apache.ibatis.annotations.Param; /** * Created by xuwenhao on 2018/4/10. */ public interface BelongsMapper { Belongs findById(@Param("id") Integer id); }