DictionaryController.java 385 Bytes
package com.bsth.controller.sys;

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

import com.bsth.controller.BaseController;
import com.bsth.entity.sys.Dictionary;

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

}