| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.goafanti.demand.service;
- import java.util.List;
- import com.goafanti.achievement.bo.AchievementDemandListBo;
- import com.goafanti.common.model.Demand;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.demand.bo.DemandImportBo;
- import com.goafanti.demand.bo.DemandListBo;
- import com.goafanti.demand.bo.DemandManageDetailBo;
- import com.goafanti.demand.bo.DemandPartnerListBo;
- import com.goafanti.demand.bo.ObjectInterestListBo;
- import com.goafanti.portal.bo.DemandPortalDetailBo;
- import com.goafanti.portal.bo.DemandPortalSimilarListBo;
- import com.goafanti.portal.bo.DemandSearchDetailBo;
- import com.goafanti.portal.bo.DemandSearchListBo;
- public interface DemandService {
- void saveUserDemand(Demand d, String validityPeriodFormattedDate, String[] keywords);
- int updateUserDemand(Demand d, String validityPeriodFormattedDate, String[] keywords, Integer switchSign);
- DemandManageDetailBo selectUserDemandDetail(String id);
- int deleteByPrimaryKey(List<String> asList);
- DemandManageDetailBo selectOrgDemandDetail(String id);
- Demand selectByPrimaryKey(String id);
- int updateReleaseStatus(Demand d);
- int updateAuditDemand(Demand d, String techBroderId, Integer auditStatus);
- void saveDemand(Demand d, String validityPeriodFormattedDate, String keywords[],List<String> webPages, List<String> appPages);
- List<AchievementDemandListBo> selectAchievementDemandListByDemandId(String id);
- void insertImport(List<DemandImportBo> data);
- DemandSearchDetailBo selectDemandSearchDetail(String uid, String id);
- int updateMatchAchievement(Demand d);
- Pagination<DemandPartnerListBo> lisePartnerDemand(String employerId, Integer pNo, Integer pSize);
- DemandPortalDetailBo findUserPortalDemandDetail(String id);
- DemandPortalDetailBo findOrgPortalDemandDetail(String id);
- List<DemandPortalSimilarListBo> findByIndustryCategoryA(Integer industryCategoryA, String id);
- int updateByPrimaryKeySelective(Demand d);
-
- DemandListBo selectDemandDetail( String id);
-
- Pagination<DemandSearchListBo> listAppDemand(Integer auditStatus, Integer serialNumber, String name, String keyword, Integer demandType,Integer industryCategoryA,
- String validityPeriodStartDate, String validityPeriodEndDate, Integer status, Integer releaseStatus,
- String releaseDateStartDate, String releaseDateEndDate,String employerId, Integer pNo, Integer pSize);
- Pagination<ObjectInterestListBo> selectinterest(Integer type,Integer pageNo, Integer pageSize);
- Pagination<DemandSearchListBo> listMyDemand(Integer pNo, Integer pSize);
- int saveAppUserDemand(Demand d, String validityPeriodFormattedDate, String[] keywords);
- Demand DemandFollowDetails(String id);
-
- //科技需求首页列表
- List<DemandListBo> recentDemand(int size);
-
- List<DemandListBo> companyDemand(int size);
-
- List<DemandListBo> getUrgentDemand(int size);
-
- List<DemandListBo> getHotDemand(int size);
-
- List<DemandListBo> areaDemand(int size);
-
- List<DemandListBo> proLearnStudyDemand(int size);
-
- List<DemandListBo> getFundCrowdDemand(int size);
-
- List<DemandListBo> getPersonnelDemand(int size);
-
- }
|