fix
Helius
2021-06-29 5a02b62b3b2b3663b89a1fb8be0c3f6ac1eb1d3f
gc-user/src/main/java/com/xzx/gc/user/mapper/JhyInfoMapper.java
@@ -1,8 +1,12 @@
package com.xzx.gc.user.mapper;
import com.xzx.gc.entity.JhyInfo;
import com.xzx.gc.user.dto.JhyInfoListDto;
import com.xzx.gc.user.vo.JhyInfoListVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface JhyInfoMapper extends GcMapper<JhyInfo> {
@@ -13,4 +17,8 @@
    JhyInfo selectJhyInfoByUserId(@Param("userId") String userId);
    JhyInfo selectExistJhyByIndeityOrMobile(@Param("mobile") String mobile, @Param("identity") String Identity);
    List<JhyInfoListVo> selectJhyInfoList(@Param("record") JhyInfoListDto jhyInfoListDto);
    int deleteByUserId(@Param("userId") String userId);
}