SubjectController.java
530 Bytes
package com.bsth.controller.subject;
import com.bsth.controller.BaseController;
import com.bsth.entity.subject.Subject;
import com.bsth.service.subject.SubjectService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("subject")
public class SubjectController extends BaseController<Subject, Integer> {
@Autowired
SubjectService subjectService;
}