21 lines
512 B
Java
21 lines
512 B
Java
package com.xiang.common.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.xiang.common.pojo.jntyzx.miniapp.pojo.UserInfoDO;
|
|
import org.apache.ibatis.annotations.Delete;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
/**
|
|
* @Author: xiang
|
|
* @Date: 2026-05-09 10:16
|
|
*/
|
|
@Mapper
|
|
@Repository
|
|
public interface JntyzxUserInfoMapper extends BaseMapper<UserInfoDO> {
|
|
|
|
@Delete("delete from jntyzx_user_info where 1=1")
|
|
int delAll();
|
|
|
|
}
|