| 1234567891011121314151617 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.FieldGlossory;
- public interface FieldGlossoryMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(FieldGlossory record);
- int insertSelective(FieldGlossory record);
- FieldGlossory selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(FieldGlossory record);
- int updateByPrimaryKey(FieldGlossory record);
- }
|