|
|
|
@ -0,0 +1,39 @@ |
|
|
|
package com.thing.cbam.context; |
|
|
|
|
|
|
|
import com.thing.cbam.baesInfoExcel.service.CbamIndustryService; |
|
|
|
import com.thing.cbam.baesInfoExcel.service.CbamProcessMaterialService; |
|
|
|
import com.thing.cbam.baesInfoExcel.service.CbamProdRouteRelationService; |
|
|
|
import com.thing.cbam.directCarbon.service.CbamCarbonDirectService; |
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag; |
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("v2/cbam/context") |
|
|
|
@Tag(name = "excel的上下文管理") |
|
|
|
@RequiredArgsConstructor |
|
|
|
public class ExcelContextManage { |
|
|
|
|
|
|
|
/** |
|
|
|
* A表企业基础信息 |
|
|
|
*/ |
|
|
|
private final CbamIndustryService cbamIndustryService; |
|
|
|
|
|
|
|
/** |
|
|
|
* A表企综合商品类别和相关生产过程 |
|
|
|
*/ |
|
|
|
private final CbamProcessMaterialService cbamProcessMaterialService; |
|
|
|
|
|
|
|
/** |
|
|
|
* A表购买的原材料 |
|
|
|
*/ |
|
|
|
private final CbamProdRouteRelationService cbamProdRouteRelationService; |
|
|
|
|
|
|
|
/** |
|
|
|
* B表是否涉及燃烧排放 |
|
|
|
*/ |
|
|
|
private final CbamCarbonDirectService cbamCarbonDirectService; |
|
|
|
|
|
|
|
|
|
|
|
} |