IfaAssetsController.java 613 Bytes
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
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;


}