Blame view

FundDictServiceImpl.java 486 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.zhongzhi.service.impl;

import com.zhongzhi.model.FundDictDO;
import com.zhongzhi.dao.FundDictDAO;
import com.zhongzhi.service.FundDictService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * <p>
 * 届数表 服务实现类
 * </p>
 *
 * @author DengMin
 * @since 2021-04-28
 */
@Service
public class FundDictServiceImpl extends ServiceImpl<FundDictDAO, FundDictDO> implements FundDictService {

}