SSPdetailMapperAuto.java
967 Bytes
package com.huaheng.pc.config.zone.mapper;
import com.huaheng.pc.config.zone.domain.SSPdetail;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
public interface SSPdetailMapperAuto {
    List<SSPdetail> selectListEntityByLike(SSPdetail condition);
    List<SSPdetail> selectListEntityByEqual(SSPdetail condition);
    List<Map<String, Object>> selectListMapByEqual(@Param("columns") String columns, @Param("condition") SSPdetail condition);
    SSPdetail selectEntityById(Integer id);
    SSPdetail selectFirstEntity(SSPdetail condition);
    Map<String, Object> selectFirstMap(@Param("columns") String columns, @Param("condition") SSPdetail condition);
    int insert(SSPdetail record);
    int updateByModel(SSPdetail record);
    int updateByCondition(@Param("record") SSPdetail record, @Param("condition") SSPdetail condition);
    int deleteById(Integer id);
    int deleteByCondition(SSPdetail condition);
}