xiaoyong931011
2021-07-16 c7ed6d6981471efacce56f72866bfbf8d9cd5109
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);
}