Helius
2021-12-01 c4bade94a970fca41493ec5a8e02a91219248a57
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);
}