DictionaryServiceImpl.java 351 Bytes
package com.bsth.service.sys.impl;

import org.springframework.stereotype.Service;

import com.bsth.entity.sys.Dictionary;
import com.bsth.service.impl.BaseServiceImpl;
import com.bsth.service.sys.DictionaryService;

@Service
public class DictionaryServiceImpl extends BaseServiceImpl<Dictionary, Integer> implements DictionaryService{

}