package com.cab.dao;

import java.util.List;

import com.cab.model.ContentPush;

public interface ContentPushMapper {
    List<ContentPush> selectByContentTypeId(String contentTypeId);
}