CatalogService.java 299 Bytes
package com.sincere.wechatbusiness.service;

import com.sincere.wechatbusiness.model.Catalog;

import java.util.List;

public interface CatalogService {
    Catalog getDetail(Catalog catalog);

    int insert(Catalog catalog);

    int update(Catalog catalog);

    List<Catalog> getList(int id);
}