DictionaryController.java 325 Bytes
package com.bsth.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.bsth.entity.sys.Dictionary;

@RestController
@RequestMapping("dictionary")
public class DictionaryController extends BaseController<Dictionary, Integer>{

}