IntelligentRecognition/ah-jjsp-service/.svn/pristine/53/53018e2e7930d57be567b3d027a...

50 lines
913 B
Plaintext

package com.sercurityControl.proteam.mapper;
import com.sercurityControl.proteam.domain.vo.DutyChildVo;
import org.springframework.stereotype.Repository;
import javax.annotation.Resource;
import java.util.List;
/**
* @author 黑子
*/
@Repository
public interface DutyChildMapper {
/**
* 查询全部工程信息
* @param vo
* @return
*/
List<DutyChildVo> getAllProList(DutyChildVo vo);
/**
* 获取施工方法
* @param vo
* @return
*/
List<DutyChildVo> getSgList(DutyChildVo vo);
/**
* 查询全部停工工程
* @param vo
* @return
*/
List<DutyChildVo> getWsgList(DutyChildVo vo);
/**
*
* @param vo
* @return
*/
List<DutyChildVo> getWeekList(DutyChildVo vo);
/**
* 查询日计划数据
* @param vo
* @return
*/
List<DutyChildVo> getDayList(DutyChildVo vo);
}