7fb127013ebeef6432a464516243d135a622c709.svn-base 571 B

1234567891011121314151617181920
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttFundBase;
  4. import cn.com.goldenwater.dcproj.param.AttFundBaseParam;
  5. import com.github.pagehelper.PageInfo;
  6. import java.util.List;
  7. /**
  8. * @author lisen
  9. * @date 2021-6-19
  10. */
  11. public interface AttFundBaseService extends CrudService<AttFundBase, AttFundBaseParam> {
  12. // ------------------------- 自定方法 -------------------------
  13. AttFundBase getObjId(String objId);
  14. int convertTc(AttFundBaseParam attFundBaseParam);
  15. }