xiaoyong931011
2021-06-30 5a855bd4b2c62f8b234d6c983e3131921a378975
1
2
3
4
5
6
7
8
9
10
11
12
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.HomeServiceInfo;
import com.xzx.gc.model.system.HomeServicePageDTO;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface HomeServiceInfoMapper extends GcMapper<HomeServiceInfo> {
    HomeServiceInfo findFather(@Param("id") Long id);
}