FieldGlossoryMapper.java 591 B

1234567891011121314151617181920212223
  1. package com.goafanti.common.dao;
  2. import java.util.List;
  3. import org.apache.ibatis.annotations.Param;
  4. import com.goafanti.common.model.FieldGlossory;
  5. public interface FieldGlossoryMapper {
  6. int deleteByPrimaryKey(Integer id);
  7. int insert(FieldGlossory record);
  8. int insertSelective(FieldGlossory record);
  9. FieldGlossory selectByPrimaryKey(Integer id);
  10. int updateByPrimaryKeySelective(FieldGlossory record);
  11. int updateByPrimaryKey(FieldGlossory record);
  12. List<FieldGlossory> getField(@Param("pid")Integer pid, @Param("level")Integer level);
  13. }