审查视图

src/main/java/com/sy/service/RepertoryService.java 298 字节
zhangFan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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);
}