RepertoryService.java
298 字节
package com.sy.service;
import com.sy.model.T_AIR_REPERTORY;
/**
* @author
* @time 2019-05-28 10:15
*/
public interface RepertoryService {
int updateEntry(T_AIR_REPERTORY repertory);
T_AIR_REPERTORY selectByPermaryKey(String mawb);
int insertEntry(T_AIR_REPERTORY repertory);
}