| | |
| | | import com.fgkj.dto.ram.Fbs9100s_fod_state; |
| | | import com.fgkj.services.ram.Fbs9100s_fod_stateService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | |
| | | @RequestMapping("fbs9100sFodState") |
| | | @RestController |
| | | @Api |
| | | @Api(tags = "fbs9100sFodState接口") |
| | | public class Fbs9100s_fod_stateController{ |
| | | |
| | | @Resource |
| | |
| | | |
| | | //根据设备id查询设备养护除硫的参数信息 |
| | | @GetMapping("byCondition") |
| | | @ApiOperation(notes = "",value="设备id查询设备养护除硫的参数信息") |
| | | public ServiceModel serchByCondition(@RequestBody Fbs9100s_fod_state fod){ |
| | | ServiceModel model=service.serchByCondition(fod); |
| | | |