22 lines
348 B
Java
22 lines
348 B
Java
package io.company.localhost.mapper;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import io.company.localhost.common.dto.MapDto;
|
|
|
|
@Mapper
|
|
public interface localvoteMapper {
|
|
|
|
Long insertVote(MapDto map);
|
|
|
|
List<MapDto> getVoteList(MapDto map);
|
|
|
|
Long updateEndData(MapDto map);
|
|
|
|
|
|
}
|