5fb3e6b3c3f90cb73b6d4bdaf5cf2cf62cab0296.svn-base 709 B

12345678910111213141516171819202122232425
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.AttOtherBaseDtos;
  4. import cn.com.goldenwater.dcproj.model.AttOtherBase;
  5. import cn.com.goldenwater.dcproj.param.AttOtherBaseParam;
  6. import com.github.pagehelper.PageInfo;
  7. import java.util.List;
  8. /**
  9. * @author lune
  10. * @date 2019-7-19
  11. */
  12. public interface AttOtherBaseService extends CrudService<AttOtherBase, AttOtherBaseParam> {
  13. int insertList(AttOtherBaseDtos dtos);
  14. PageInfo getBasePageInfoNotInFsc(AttOtherBaseParam attOtherBaseParam);
  15. int updateOtherBase(AttOtherBase attOtherBase);
  16. // ------------------------- 自定方法 -------------------------
  17. }