审查视图

src/main/java/com/sy/service/aironeExStockService.java 233 字节
1 2 3 4 5 6 7 8
package com.sy.service;

import com.sy.model.airone_ex_stock;

public interface aironeExStockService {

    int save(airone_ex_stock ex);
zhangFan authored
9 10 11 12
    airone_ex_stock selectByMawbNo(String mawbNo);

    int delectByWorkNo(String workNo);
13
}