AdsDimFinancialYearWeekInfoServiceImpl.java 725 字节
Newer Older
Q
qinyingjie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.kwan.springbootkwan.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.kwan.springbootkwan.entity.AdsDimFinancialYearWeekInfo;
import com.kwan.springbootkwan.mapper.AdsDimFinancialYearWeekInfoMapper;
import com.kwan.springbootkwan.service.AdsDimFinancialYearWeekInfoService;
import org.springframework.stereotype.Service;

/**
 * (AdsDimFinancialYearWeekInfo)表服务实现类
 *
 * @author makejava
 * @since 2022-12-22 17:25:11
 */
@Service("adsDimFinancialYearWeekInfoService")
public class AdsDimFinancialYearWeekInfoServiceImpl extends ServiceImpl<AdsDimFinancialYearWeekInfoMapper, AdsDimFinancialYearWeekInfo> implements AdsDimFinancialYearWeekInfoService {

}