xiaoyong931011
2021-11-09 b8c8ff207a351574d5594671661c62c051470768
1
2
3
4
5
6
7
8
9
10
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.UserHeadDetails;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
public interface UserHeadDetailsMapper extends GcMapper<UserHeadDetails> {
 
    Integer selectDetailsCount(@Param("userId") String userId);
}