1
2
3
4
5
6
7
8
9
10
11
12
| package com.template.service;
|
|
| import com.app.base.data.ApiResponseResult;
|
| public interface TemplateService {
| //根据code获取配置样式信息
| public ApiResponseResult getCodeData(String code) throws Exception;
|
|
| public ApiResponseResult getHeyiData(String code) throws Exception;
| }
|
|