package com.xxl.job.admin.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface AccountDao { List getAccountList(@Param("mediaId") Integer valueOf); }