| 12345678910111213141516 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttFjsduBase;
- import cn.com.goldenwater.dcproj.param.AttFjsduBaseParam;
- /**
- * @author lhc
- * @date 2023年12月18日
- */
- public interface AttFjsduBaseService extends CrudService<AttFjsduBase, AttFjsduBaseParam> {
- // ------------------------- 自定方法 -------------------------
- AttFjsduBase getObjId(String objId);
- }
|