/** * 树Service * @Author: jianshengxiong * @Date: 2019-07-30 19:22:00 */ import AxiosFun from "./AxiosFun"; import { WinResponseData } from "../vo/BaseVO"; export default class TreeService { /** * 产品层级 */ public static fundTree(): Promise { return AxiosFun.get(AxiosFun.basicParameterServiceName + "/api/tree/fundTree", undefined); } }