TFumigationPlanMapper.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.chinaitop.depot.fumigation.mapper;
  2. import com.chinaitop.depot.fumigation.model.TFumigationPlan;
  3. import com.chinaitop.depot.fumigation.model.TFumigationPlanExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface TFumigationPlanMapper {
  8. int countByExample(TFumigationPlanExample example);
  9. int deleteByExample(TFumigationPlanExample example);
  10. int deleteByPrimaryKey(String id);
  11. int insert(TFumigationPlan record);
  12. int insertSelective(TFumigationPlan record);
  13. List<TFumigationPlan> selectByExample(TFumigationPlanExample example);
  14. TFumigationPlan selectByPrimaryKey(String id);
  15. int updateByExampleSelective(@Param("record") TFumigationPlan record, @Param("example") TFumigationPlanExample example);
  16. int updateByExample(@Param("record") TFumigationPlan record, @Param("example") TFumigationPlanExample example);
  17. int updateByPrimaryKeySelective(TFumigationPlan record);
  18. int updateByPrimaryKey(TFumigationPlan record);
  19. //获取方案列表
  20. List<Map<String,Object>> selectPlanQueryList(Map<String, Object> map);
  21. //作业全部信息--省级平台用
  22. List<Map<String,Object>> getAllQueryList(Map<String, Object> map);
  23. //获取熏蒸审批方案列表
  24. List<Map<String,Object>> getFumigationApproveList(Map<String, Object> map);
  25. List<TFumigationPlan> getProcessList(Map<String, Object> map);
  26. }