EmsGmPcJhMapper.java 596 B

1234567891011121314151617181920
  1. package com.steerinfo.ems.emsgmpcjh.mapper;
  2. import com.steerinfo.ems.emsgmpcjh.model.EmsGmPcJh;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.util.HashMap;
  5. import java.util.List;
  6. import java.util.Map;
  7. import org.apache.ibatis.annotations.Mapper;
  8. @Mapper
  9. public interface EmsGmPcJhMapper extends IBaseMapper<EmsGmPcJh, String> {
  10. //获取国贸编号
  11. String getMaxid(EmsGmPcJh emsGmPcJh);
  12. //下发与取消下发
  13. int updateState(EmsGmPcJh emsGmPcJh);
  14. //轮次计划页面查询
  15. List<Map<String, Object>> getGmPcJhData(HashMap<String, Object> parmas);
  16. }