43e7f863be9a6aab41eb4c65233b2dfacd63c541.svn-base 945 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AdOrOrg;
  4. import cn.com.goldenwater.dcproj.model.AttEngResAssociated;
  5. import cn.com.goldenwater.dcproj.model.AttOrgBase;
  6. import cn.com.goldenwater.dcproj.param.AttOrgBaseParam;
  7. import com.github.pagehelper.PageInfo;
  8. import java.util.List;
  9. /**
  10. * @author lune
  11. * @date 2019-2-18
  12. */
  13. public interface AttOrgBaseService extends CrudService<AttOrgBase, AttOrgBaseParam> {
  14. PageInfo<AttOrgBase> getListByCondition(AttOrgBaseParam request);
  15. List<AttOrgBase> getProvincialOrgList();
  16. List<AttOrgBase> getOrgListBySchmId(String schmId);
  17. List<AdOrOrg> getOrgOrAdByCodeAndType(String code, String type);
  18. List<AdOrOrg> getOrgOrAdBySchmIdAndGuid(String schmId, String guid);
  19. List<AttOrgBase> getListByPid(String pid);
  20. // ------------------------- 自定方法 -------------------------
  21. }