| | |
| | | import com.fgkj.dto.ram.Fbs9100s_nibian_state; |
| | | import com.fgkj.services.ram.Fbs9100s_nibian_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("fbs9100sNibianState") |
| | | @RestController |
| | | @Api |
| | | @Api(tags = "fbs9100sNibianState接口") |
| | | public class Fbs9100s_nibian_stateController{ |
| | | |
| | | @Resource |
| | |
| | | |
| | | //根据设备 |
| | | @GetMapping("byCondition") |
| | | @ApiOperation(notes = "",value="设备ID查询") |
| | | public ServiceModel serchByCondition(@RequestBody Fbs9100s_nibian_state fstate) { |
| | | ServiceModel model=service.serchByCondition(fstate); |
| | | |