| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AdOrOrg;
- import cn.com.goldenwater.dcproj.model.AttEngResAssociated;
- import cn.com.goldenwater.dcproj.model.AttOrgBase;
- import cn.com.goldenwater.dcproj.param.AttOrgBaseParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-2-18
- */
- public interface AttOrgBaseService extends CrudService<AttOrgBase, AttOrgBaseParam> {
- PageInfo<AttOrgBase> getListByCondition(AttOrgBaseParam request);
- List<AttOrgBase> getProvincialOrgList();
- List<AttOrgBase> getOrgListBySchmId(String schmId);
- List<AdOrOrg> getOrgOrAdByCodeAndType(String code, String type);
- List<AdOrOrg> getOrgOrAdBySchmIdAndGuid(String schmId, String guid);
- List<AttOrgBase> getListByPid(String pid);
- // ------------------------- 自定方法 -------------------------
- }
|