审查视图

src/main/java/com/sy/mapper/T_AIR_REPERTORYMapper.java 469 字节
zhangFan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.sy.mapper;

import com.sy.model.T_AIR_REPERTORY;
import org.springframework.stereotype.Component;

@Component
public interface T_AIR_REPERTORYMapper {
    int deleteByPrimaryKey(String mawbNo);

    int insert(T_AIR_REPERTORY record);

    int insertSelective(T_AIR_REPERTORY record);

    T_AIR_REPERTORY selectByPrimaryKey(String mawbNo);

    int updateByPrimaryKeySelective(T_AIR_REPERTORY record);

    int updateByPrimaryKey(T_AIR_REPERTORY record);
}