ORIGINMANIFESTMASTERMapper.java 550 字节
package com.tianbo.analysis.dao;

import com.tianbo.analysis.model.ORIGINMANIFESTMASTER;
import org.apache.ibatis.annotations.Param;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

public interface ORIGINMANIFESTMASTERMapper {
    int insert(ORIGINMANIFESTMASTER record);

    int insertSelective(ORIGINMANIFESTMASTER record);

    int changeFlightDate(HashMap map);

    ORIGINMANIFESTMASTER selectByAHBA(ORIGINMANIFESTMASTER record);

    List<Map> statics(@Param("startDate") String var1, @Param("endDate")String var2);
}