AsraOpMapper.java
843 Bytes
package com.zteits.oa.report.mapper;
import com.zteits.oa.report.domain.AsraOp;
import com.zteits.oa.report.domain.AsraOpExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AsraOpMapper {
long countByExample(AsraOpExample example);
int deleteByExample(AsraOpExample example);
int deleteByPrimaryKey(Long id);
int insert(AsraOp record);
int insertSelective(AsraOp record);
List<AsraOp> selectByExample(AsraOpExample example);
AsraOp selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") AsraOp record, @Param("example") AsraOpExample example);
int updateByExample(@Param("record") AsraOp record, @Param("example") AsraOpExample example);
int updateByPrimaryKeySelective(AsraOp record);
int updateByPrimaryKey(AsraOp record);
}