审查视图

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

    int saveEnter(RESMESSAGE resmessage);

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

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

    /**
     * @param manifestList 运单号数组字符串 格式为"'69515289724','40692420145','17233862076'"
     * @return 全部放行 返回true 未全部放行返回false
     */
24
    boolean checkManifestRelease(GatherInfo info, String manifestList);
zhangFan authored
25
}