package com.jsh.erp.service.cloudContent; import com.jsh.erp.datasource.entities.CloudContent; import java.util.List; public interface CloudContentService { List getList(CloudContent cloudContent); CloudContent getById(Long id); int add(CloudContent cloudContent); int update(CloudContent cloudContent); int deleteById(Long id); CloudContent getByType(String type); }