cloudroam
2025-03-19 c3fbe657671ae55768ce9ac7ea7bb75ff0c6829e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.jsh.erp.service.cloudContent;
 
import com.jsh.erp.datasource.entities.CloudContent;
 
import java.util.List;
 
public interface CloudContentService {
    List<CloudContent> getList(CloudContent cloudContent);
 
    CloudContent getById(Long id);
 
    int add(CloudContent cloudContent);
 
    int update(CloudContent cloudContent);
 
    int deleteById(Long id);
 
    CloudContent getByType(String type);