a35d3b7a2963dbe1ba3560033ab46da848f0b1ff.svn-base 499 B

1234567891011121314151617
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttWiuBase;
  4. import cn.com.goldenwater.dcproj.param.AttWiuBaseParam;
  5. /**
  6. * @author lune
  7. * @date 2019-8-9
  8. */
  9. public interface AttWiuBaseService extends CrudService<AttWiuBase, AttWiuBaseParam> {
  10. int add(AttWiuBase attWiuBase) throws Exception;
  11. // ------------------------- 自定方法 -------------------------
  12. AttWiuBase getObjId(String objId);
  13. }