| 123456789101112131415161718192021222324 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.TacObjSubject;
- import cn.com.goldenwater.dcproj.param.TacObjSubjectParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-6-19
- */
- public interface TacObjSubjectService extends CrudService<TacObjSubject, TacObjSubjectParam> {
- String selectCount();
- List<TacObjSubject> listType();
- TacObjSubject getOne(String str);
- // ------------------------- 自定方法 -------------------------
- }
|