package com.tanpu.feo.feojob.controller;

import com.tanpu.feo.feojob.service.IfaAssetsService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 *  Controller
 *
 * @author zejia zj wu 2021年05月19日
 * @version 1.0
 */
@RestController
@Api(tags = "")
@RequestMapping(value = "v1/ifaAssets")
@Slf4j
public class IfaAssetsController {

	@Autowired
	private IfaAssetsService ifaAssetsService;


}