SubjectServiceImpl.java 335 Bytes
package com.bsth.service.subject.impl;

import com.bsth.entity.subject.Subject;
import com.bsth.service.impl.BaseServiceImpl;
import com.bsth.service.subject.SubjectService;
import org.springframework.stereotype.Service;

@Service
public class SubjectServiceImpl extends BaseServiceImpl<Subject, Integer> implements SubjectService {
}