Merge remote-tracking branch 'origin/master'

This commit is contained in:
2025-02-22 14:22:01 +08:00
33 changed files with 1154 additions and 53 deletions

View File

@ -0,0 +1,18 @@
package com.ruoyi.wgz.mapper;
import com.ruoyi.wgz.domain.WgzScoreRecord;
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
import com.ruoyi.common.core.mybatisplus.cache.MybatisPlusRedisCache;
import org.apache.ibatis.annotations.CacheNamespace;
/**
* 务工者评分记录Mapper接口
*
* @author ruoyi
* @date 2025-02-21
*/
// 如使需切换数据源 请勿使用缓存 会造成数据不一致现象
@CacheNamespace(implementation = MybatisPlusRedisCache.class, eviction = MybatisPlusRedisCache.class)
public interface WgzScoreRecordMapper extends BaseMapperPlus<WgzScoreRecord> {
}