GATService.java 448 字节
package com.sy.service;

import com.sy.model.port_manifest_body;
import com.sy.model.port_manifest_head;
import com.sy.model.port_manifest_head_stat;

/**
 * @author zhangfan
 * @web www.sy.com
 * @company 郑州商友科技有限公司
 * @time 2018-11-28 16:40
 */
public interface GATService {

    int savePortHead(port_manifest_head head);

    int savePortBody(port_manifest_body body);

    int savePortStat(port_manifest_head_stat stat);
}