| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import com.yssh.entity.Emission; |
| | | import com.yssh.service.IEmissionService; |
| | | import com.yssh.service.EmissionService; |
| | | import com.yssh.utils.Result; |
| | | |
| | | /** |
| | | * @author lishijia |
| | | * @ClassName YsshPfshController |
| | | * @Description TODO |
| | | * @date 2022/11/24 14:44 |
| | | * @Version 1.0 |
| | | */ |
| | | import javax.annotation.Resource; |
| | | |
| | | @Api(tags="排放点") |
| | | @RestController |
| | | @RequestMapping("/emission") |
| | | @SuppressWarnings("rawtypes") |
| | | public class EmissionController { |
| | | |
| | | @Autowired |
| | | private IEmissionService emissionService; |
| | | @Resource |
| | | private EmissionService emissionService; |
| | | |
| | | @ApiOperation(value = "名称查询排放数据", notes = "根据名称查询排放详细信息") |
| | | @ApiImplicitParam(name = "name", value = "名称", required = true, type = "String") |