| | |
| | | |
| | | import com.ks.lib.common.dao.BaseMapper; |
| | | import com.ks.push.pojo.DO.BPushTaskExcuteResult; |
| | | import com.ks.push.pojo.DO.PushPlatform; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface BPushTaskExcuteResultMapper extends BaseMapper<BPushTaskExcuteResult> { |
| | | |
| | | } |
| | | BPushTaskExcuteResult selectByPrimaryKeyForUpdate(String id); |
| | | |
| | | |
| | | List<BPushTaskExcuteResult> list(@Param("query") DaoQuery query); |
| | | |
| | | long count(@Param("query") DaoQuery query); |
| | | |
| | | |
| | | public static class DaoQuery { |
| | | public String taskId; |
| | | public PushPlatform pushPlatform; |
| | | public Boolean finish; |
| | | public int start; |
| | | public int count; |
| | | } |
| | | } |