| 12345678910111213141516 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttWagaCrrct;
- import cn.com.goldenwater.dcproj.param.AttWagaCrrctParam;
- /**
- * @author lune
- * @date 2019-4-22
- */
- public interface AttWagaCrrctService extends CrudService<AttWagaCrrct, AttWagaCrrctParam> {
- // ------------------------- 自定方法 -------------------------
- }
|