审查视图

src/main/java/com/sy/service/ResMessageService.java 693 字节
zhangFan authored
1 2
package com.sy.service;
3
import com.sy.model.GatherInfo;
xudada authored
4
import com.sy.model.LAND_BUSINEESTYPE_LIST_INFO;
zhangFan authored
5 6
import com.sy.model.RESMESSAGE;
朱兆平 authored
7 8
import java.util.List;
zhangFan authored
9 10 11 12 13 14 15 16 17
/**
 * @author
 * @time 2019-${MOUTH}-22 21:31
 */
public interface ResMessageService {

    int saveEnter(RESMESSAGE resmessage);

    RESMESSAGE selectByManifest(String manifest);
朱兆平 authored
18 19 20 21

    List<RESMESSAGE> selectByManifestList(String[] manifest);

    /**
xudada authored
22
     * @param list_infos 运单号数组字符串 格式为"'69515289724','40692420145','17233862076'"
朱兆平 authored
23 24
     * @return 全部放行 返回true 未全部放行返回false
     */
xudada authored
25
    boolean checkManifestRelease(GatherInfo info, List<LAND_BUSINEESTYPE_LIST_INFO> list_infos);
zhangFan authored
26
}