|
@@ -5640,6 +5640,31 @@ FROM
|
|
|
}));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [HttpGet("{provinceId}")]
|
|
|
+ [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
|
+ public async Task<IActionResult> EnterExitCostFileOwner([FromRoute] int provinceId = 122)
|
|
|
+ {
|
|
|
+
|
|
|
+ if (provinceId < 1) provinceId = 122;
|
|
|
+
|
|
|
+
|
|
|
+ * 122 四川
|
|
|
+ * 108 贵州
|
|
|
+ * 103 重庆
|
|
|
+ * 132 云南
|
|
|
+ */
|
|
|
+ (SetDataInfoView[] wordTypeData, SetDataInfoView[] excelTypeData) = await _enterExitCostDraftRep.FileOwner(provinceId);
|
|
|
+
|
|
|
+ return Ok(JsonView(true, "查询成功!", new
|
|
|
+ {
|
|
|
+ WordTypeData = wordTypeData,
|
|
|
+ ExcelTypeData = excelTypeData,
|
|
|
+ }));
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -7769,7 +7794,7 @@ FROM
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
[HttpGet("{provinceId}")]
|