14 lines
421 B
Java
14 lines
421 B
Java
package com.xy.xyaicpzs.service;
|
|
|
|
import com.xy.xyaicpzs.domain.entity.DltFrontendHistoryAll;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author XY003
|
|
* @description 针对表【dlt_frontend_history_all(大乐透前区全部历史数据表)】的数据库操作Service
|
|
* @createDate 2025-08-20 16:24:40
|
|
*/
|
|
public interface DltFrontendHistoryAllService extends IService<DltFrontendHistoryAll> {
|
|
|
|
}
|