7d4a2af1093c9d6735598385edb6674c6afe51c9.svn-base 466 B

12345678910111213141516
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttFjsduBase;
  4. import cn.com.goldenwater.dcproj.param.AttFjsduBaseParam;
  5. /**
  6. * @author lhc
  7. * @date 2023年12月18日
  8. */
  9. public interface AttFjsduBaseService extends CrudService<AttFjsduBase, AttFjsduBaseParam> {
  10. // ------------------------- 自定方法 -------------------------
  11. AttFjsduBase getObjId(String objId);
  12. }