19 lines
420 B
Java
19 lines
420 B
Java
|
|
package com.xy.xyaicpzs.mapper;
|
||
|
|
|
||
|
|
import com.xy.xyaicpzs.domain.entity.LotteryDraws;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author XY003
|
||
|
|
* @description 针对表【lottery_draws(彩票开奖信息表)】的数据库操作Mapper
|
||
|
|
* @createDate 2025-06-14 16:41:29
|
||
|
|
* @Entity com.xy.xyaicpzs.domain.entity.LotteryDraws
|
||
|
|
*/
|
||
|
|
public interface LotteryDrawsMapper extends BaseMapper<LotteryDraws> {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|