Commit 591608fb authored by 张森's avatar 张森

实体创建 类创建

parent eea6887a
package com.yeejoin.amos.fas.business.controller;
import com.yeejoin.amos.fas.business.service.intfc.IPlanReportService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(value = "/planReport")
@Api(tags = "演练报告API")
public class PlanReportController {
@Autowired
IPlanReportService iPlanReportService;
}
package com.yeejoin.amos.fas.business.service.impl;
import com.yeejoin.amos.fas.business.service.intfc.IPlanReportService;
import org.springframework.stereotype.Service;
@Service
public class PlanReportServiceImpl implements IPlanReportService {
}
package com.yeejoin.amos.fas.business.service.intfc;
public interface IPlanReportService {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment