审查视图

src/main/java/com/sy/mapper/airone_ex_stockMapper.java 522 字节
1 2 3
package com.sy.mapper;

import com.sy.model.airone_ex_stock;
zhangFan authored
4
import org.springframework.stereotype.Component;
5
zhangFan authored
6
@Component
7 8 9 10 11 12 13 14 15 16 17 18 19 20
public interface airone_ex_stockMapper {

    int deleteByPrimaryKey(String workNo);

    int insert(airone_ex_stock record);

    int insertSelective(airone_ex_stock record);

    airone_ex_stock selectByPrimaryKey(String workNo);

    int updateByPrimaryKeySelective(airone_ex_stock record);

    int updateByPrimaryKey(airone_ex_stock record);
zhangFan authored
21
    airone_ex_stock selectByMawbNo(String mawbNo);
22
}