feat:江体小程序

This commit is contained in:
Xiang
2026-05-09 10:21:03 +08:00
parent 76ec2c8b3c
commit b30af008e0
58 changed files with 916 additions and 356 deletions

View File

@@ -0,0 +1,20 @@
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();
}