DemandLogMapper.java 398 B

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