1234567891011121314151617181920212223242526272829303132 |
- package com.jsh.erp.datasource.mappers;
- import com.jsh.erp.datasource.entities.MaterialCurrentStock;
- import com.jsh.erp.datasource.entities.MaterialCurrentStockExample;
- import java.util.List;
- import com.jsh.erp.datasource.entities.MaterialInitialStock;
- import org.apache.ibatis.annotations.Param;
- public interface MaterialCurrentStockMapper extends BaseMapperX<MaterialCurrentStock> {
- long countByExample(MaterialCurrentStockExample example);
- int deleteByExample(MaterialCurrentStockExample example);
- int deleteByPrimaryKey(Long id);
- int insert(MaterialCurrentStock record);
- int insertSelective(MaterialCurrentStock record);
- List<MaterialCurrentStock> selectByExample(MaterialCurrentStockExample example);
- MaterialCurrentStock selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") MaterialCurrentStock record, @Param("example") MaterialCurrentStockExample example);
- int updateByExample(@Param("record") MaterialCurrentStock record, @Param("example") MaterialCurrentStockExample example);
- int updateByPrimaryKeySelective(MaterialCurrentStock record);
- int updateByPrimaryKey(MaterialCurrentStock record);
- }
|