feat:zlb调试

This commit is contained in:
Xiang
2026-05-08 14:05:51 +08:00
parent 8a302db65a
commit 8c4ea440b6
11 changed files with 211 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ package com.xiang.common.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xiang.common.pojo.jntyzx.zlb.ZlbUserInfo;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -9,6 +10,8 @@ import org.springframework.stereotype.Repository;
@Mapper
public interface ZlbUserInfoMapper extends BaseMapper<ZlbUserInfo> {
@Delete("delete from zlb_user_info where 1=1")
int deleteAll();
}