GATService.java
332 字节
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;
public interface GATService {
int savePortHead(port_manifest_head head);
int savePortBody(port_manifest_body body);
int savePortStat(port_manifest_head_stat stat);
}