package com.steerinfo.dil.controller; import com.steerinfo.dil.feign.BmsFeign; import com.steerinfo.dil.util.BaseRESTfulController; import com.steerinfo.framework.controller.RESTfulResult; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartRequest; import java.math.BigDecimal; import java.util.*; /** * @author hujianguo * @create 2021-09-22 17:10 */ @RestController @RequestMapping("${api.version}/bms") public class BMSController extends BaseRESTfulController { }