1234567891011121314151617181920 |
- package com.steerinfo.ems.emsgmpcjh.mapper;
- import com.steerinfo.ems.emsgmpcjh.model.EmsGmPcJh;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface EmsGmPcJhMapper extends IBaseMapper<EmsGmPcJh, String> {
- //获取国贸编号
- String getMaxid(EmsGmPcJh emsGmPcJh);
- //下发与取消下发
- int updateState(EmsGmPcJh emsGmPcJh);
- //轮次计划页面查询
- List<Map<String, Object>> getGmPcJhData(HashMap<String, Object> parmas);
- }
|