24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
|
|
package com.sercurityControl.proteam.service;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.web.domain.AjaxResult;
|
||
|
|
import com.sercurityControl.proteam.domain.ProData;
|
||
|
|
import com.sercurityControl.proteam.domain.WeekRiskEntity;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface WeekRiskService {
|
||
|
|
/**
|
||
|
|
* 查询周风险集合
|
||
|
|
* @param weekRiskEntity
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<WeekRiskEntity> getWeekRiskList(WeekRiskEntity weekRiskEntity);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 工程
|
||
|
|
* @param entity
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
AjaxResult getProject(WeekRiskEntity entity);
|
||
|
|
}
|