DictionaryManagementServiceImpl.java 671 字节
Newer Older
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.DictionaryManagement;
import com.kwan.springbootkwan.mapper.DictionaryManagementMapper;
import com.kwan.springbootkwan.service.DictionaryManagementService;
import org.springframework.stereotype.Service;

/**
 * 字典表(DictionaryManagement)表服务实现类
 *
 * @author makejava
 * @since 2023-10-07 17:54:39
 */
@Service("dictionaryManagementService")
public class DictionaryManagementServiceImpl extends ServiceImpl<DictionaryManagementMapper, DictionaryManagement> implements DictionaryManagementService {

}