FieldGlossoryMapper.java 428 B

1234567891011121314151617
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.FieldGlossory;
  3. public interface FieldGlossoryMapper {
  4. int deleteByPrimaryKey(Integer id);
  5. int insert(FieldGlossory record);
  6. int insertSelective(FieldGlossory record);
  7. FieldGlossory selectByPrimaryKey(Integer id);
  8. int updateByPrimaryKeySelective(FieldGlossory record);
  9. int updateByPrimaryKey(FieldGlossory record);
  10. }