package com.example.service; import com.example.dto.AwardsDTO; import com.example.vo.AwardsVO; public interface AwardsService { /** * 老师获奖上传 * @param awardsDTO */ void uploadAwards(AwardsDTO awardsDTO); void updateAwards(AwardsDTO awardsDTO, Long id); AwardsVO getById(Long id); void deleteById(Long id); }