DictionaryService.java 641 Bytes
Newer Older
miaojianfeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.qingfeng.system.service;

import com.qingfeng.base.service.CrudService;
import com.qingfeng.system.dao.DictionaryDao;
import com.qingfeng.util.PageData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * @Title: DictionaryService
 * @ProjectName com.qingfeng
 * @Description: 字典SERVICE层
 * @author qingfeng
 * @date 2020-9-22 22:43
 */
@Service
@Transactional
public class DictionaryService extends CrudService<DictionaryDao,PageData> {

@Autowired
protected DictionaryDao dictionarydao;


}