dengjunjie
2025-04-03 1e12c140c041c0cb52306a0db9ff0ba18354d0d8
优化WMS前端首页,货位查询column数据库关键字处理
已删除2个文件
已修改9个文件
已添加3个文件
1275 ■■■■■ 文件已修改
项目代码/WMS/WIDESEA_WMSClient/src/views/Home copy.vue 309 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSClient/src/views/Home.vue 49 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/07cf7dda-5295-4f4b-9336-422d595dd357.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/16426757-c6c6-4c42-8fe9-b49ddad3b19b.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/698e115f-10a6-4d66-9c6c-0a7e0aa6fd18.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/a9f62c67-e5cb-4109-8694-4cec2518ac56.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.futdcache.v2 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.suo 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Base/LocationInfoService.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseModels/PageDataOptions.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfo.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfoInputs.cache 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Log/全局异常错误日志_1740314366.log 880 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/views/Home copy.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,309 @@
<template>
  <div>
    <!-- height:40px -->
    <div class="title">库位平面图</div>
    <!-- <div>只显示一个区域的一个堆垛机对应的状态</div> -->
    <div class="main" :style="{ height: mian_height }">
      <!-- å¹³é¢å›¾æ˜¾ç¤ºåŒºåŸŸ -->
      <div class="right">
        <div v-for="layer in locationData" :key="layer.index">
          <div class="row_tip">第{{ layer.index }}层</div>
          <div class="row" v-for="row in layer.rows" :key="row.index">
            <el-tooltip
              v-for="col in row.cols"
              :key="col.column"
              effect="dark"
              :content="getTooltipContent(col)"
              placement="top"
              :show-after="200"
              :hide-after="0"
              ><div
                class="item"
                :style="{ 'background-color': GetBgColor(col) }"
              >
                {{ row.index }}-{{ col.column }}-{{ layer.index }}
              </div>
            </el-tooltip>
          </div>
        </div>
      </div>
      <!-- é€‰æ‹©æç¤ºåŒºåŸŸ -->
      <div class="left">
        <!-- <div>区域:</div>
        <el-select
          size="mini"
          filterable
          v-model="Area.shelf_code"
          placeholder="请选择"
        >
          <el-option
            v-for="item in slectData"
            :value="item.shelf_code"
            :label="item.house_name"
            :key="item.house_name"
          ></el-option>
        </el-select> -->
        <!-- <div class="tipText">堆垛机:</div>
        <el-select
          size="mini"
          clearable
          filterable
          @change="SCChange"
          v-model="Area.tunnel"
          placeholder="请选择"
        >
          <el-option
            v-for="item in scList"
            :value="item"
            :label="item"
            :key="item"
          ></el-option>
        </el-select> -->
        <!-- <div class="tipText">层:</div>
        <el-select
          size="mini"
          clearable
          filterable
          @change="SCChange"
          v-model="Area.layer"
          placeholder="请选择"
        >
          <el-option
            v-for="item in layers"
            :value="item"
            :label="item"
            :key="item"
          ></el-option>
        </el-select> -->
        <br />
        <ElButton type="success" class="btn" @click="GetViewData"
          >刷新</ElButton
        >
        <div style="margin-top: 80px">
          <div>说明</div>
          <div v-for="item in infoMsg" :key="item.bgcolor">
            <div class="infoMsg" :style="{ 'background-color': item.bgcolor }">
              {{ item.msg }}
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import { ElButton } from "element-plus";
export default {
  data() {
    return {
      slectData: [],
      scList: [],
      layers: [],
      Area: { house_name: "", tunnel: "", shelf_code: "" },
      mian_height: "",
      infoMsg: [
        { bgcolor: "lightgreen", msg: "空货位", state: 0 },
        { bgcolor: "orange", msg: "有货", state: "Stored" },
        { bgcolor: "#2BB3D5", msg: "执行中", state: "InAssigned" },
        { bgcolor: "#ccc", msg: "禁用", state: "Lock" },
        { bgcolor: "red", msg: "异常", state: "error" },
        { bgcolor: "#b7ba6b", msg: "空托", state: 99 },
      ],
      locationData: [],
    };
  },
  computed: {
    GetBgColor() {
      return (col) => {
        var bgColor = "#b7ba6b";
        //优先显示禁用状态
        if (col.enalbeStatus == 3) {
          this.infoMsg.forEach((el) => {
            if (el.state == "Lock") {
              bgColor = el.bgcolor;
            }
          });
        } else {
          this.infoMsg.forEach((el) => {
            if (
              col.locationStatus == 4 ||
              col.locationStatus == 6 ||
              col.locationStatus == 7
            ) {
              if (el.state == "InAssigned") {
                bgColor = el.bgcolor;
              }
            } else if (col.locationStatus == 2 || col.locationStatus == 3) {
              if (el.state == "Stored") {
                bgColor = el.bgcolor;
              }
            } else if (el.state == col.locationStatus) {
              bgColor = el.bgcolor;
            }
          });
        }
        return bgColor;
      };
    },
  },
  watch: {
    //切换库区
    "Area.shelf_code"(newValue, oldValue) {
      this.scList = [];
      this.layers = [];
      this.slectData.forEach((e) => {
        if (e.areaName == newValue) {
          this.Area.tunnel = e.tunnel[0];
          this.scList = e.tunnel;
          this.Area.layer = "第" + e.layers[0] + "层";
          this.layers = e.layers;
        }
      });
      this.GetViewData();
    },
  },
  methods: {
    getTooltipContent(col) {
      return [
      `状态: ${this.getStatusText(col.locationStatus)}`,
      `启用状态: ${this.getEnableStatusText(col.enalbeStatus)}`,
      `托盘号: ${col.palletNo || "无"}`
    ].join('\n');
      // return `状态: ${this.getStatusText(col.locationStatus)}
      //         å¯ç”¨çŠ¶æ€: ${this.getEnableStatusText(col.enalbeStatus)}
      //         æ‰˜ç›˜å·: ${col.palletNo || "无"}`;
    },
    getStatusText(status) {
      const statusMap = {
        0: "空货位",
        2: "有货",
        3: "有货",
        4: "执行中",
        6: "执行中",
        7: "执行中",
        99: "空托",
      };
      return statusMap[status] || "未知状态";
    },
    getEnableStatusText(status) {
      const enableMap = {
        1: "正常",
        3: "禁用",
      };
      return enableMap[status] || "未知";
    },
    GetViewData() {
      var _this = this;
      this.http
        .post("/api/StockView/GetLocationStockView", {}, "查询中")
        .then((x) => {
          _this.locationData = x.data;
          // console.log("后端返回:", x.data);
          // console.log("返回数据:", _this.locationData);
        });
    },
    // åˆ‡æ¢å †åž›æœº
    SCChange() {
      this.GetViewData();
    },
  },
  mounted() {
    var mainHeight = document.getElementById("vol-main");
    this.mian_height = mainHeight.offsetHeight - 40 + "px";
    var _this = this;
    //加载下拉选项
    this.http
      .get("/api/LocationInfo/GetLocationLayer", {}, "查询中")
      .then((x) => {
        _this.slectData = x;
        //加载第一个区域,第一个堆垛机
        _this.Area.shelf_code = _this.slectData[0].areaName;
        _this.scList = _this.slectData[0].tunnel;
        _this.layers = _this.slectData[0].layers;
      });
      this.GetViewData();
  },
  components: { ElButton },
};
</script>
<style scoped>
.left {
  height: 100%;
  float: left;
  width: 18%;
  /* background: lightblue; */
  padding-top: 20px;
  padding-left: 20px;
}
.right {
  padding: 9px;
  height: 98%;
  overflow-y: auto;
  overflow-x: auto;
  float: left;
  width: 82%;
  padding-top: 5px;
}
.title {
  text-align: center;
  padding: 5px 0px;
  font-size: 20px;
  font-weight: bold;
  width: 82%;
}
.row_tip {
  font-size: 16px;
  padding-left: 5px;
}
.row {
  overflow: auto;
  margin-bottom: 11px;
}
.item {
  float: left;
  width: 66px;
  height: 38px;
  margin: 3px;
  background-color: lightblue;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  line-height: 38px;
}
.tipText {
  margin-top: 10px;
}
.btn {
  margin-top: 15px;
}
.infoMsg {
  float: left;
  width: 63px;
  height: 35px;
  margin: 3px;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  line-height: 38px;
}
</style>
<style>
.el-input {
  width: 180px;
}
</style>
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/views/Home.vue
@@ -14,11 +14,33 @@
              v-for="col in row.cols"
              :key="col.column"
              effect="dark"
              :content="getTooltipContent(col)"
              placement="top"
              :show-after="200"
              :hide-after="0"
              ><div
            >
              <template #content v-if="col.locationStatus == 99">
                <div>空托盘</div>
              </template>
              <template #content v-else-if="col.locationStatus == 0">
                <div>空货位</div>
              </template>
              <template #content v-else>
                <div>
                  è´§ä½åç§°ï¼š{{
                    col.row + "排" + col.column + "列" + col.layer + "层"
                  }}
                </div>
                <div>货位状态:{{ getStatusText(col.locationStatus) }}</div>
                <div>物料名称: {{ col.materielName }}</div>
                <div>物料编号: {{ col.materielCode }}</div>
                <div>批号:{{ col.orderNo }}</div>
                <div>柜号:{{ col.batchNo }}</div>
                <div>数量:{{ col.quantity }}</div>
                <div>托盘号:{{ col.palletCode }}</div>
                <div>入库时间:{{ col.inDate }}</div>
                <div>启用状态:{{ getEnableStatusText(col.enalbeStatus) }}</div>
              </template>
              <div
                class="item"
                :style="{ 'background-color': GetBgColor(col) }"
              >
@@ -83,6 +105,9 @@
        >
        <div style="margin-top: 80px">
          <div style="color: red">库位排序说明:排-列-层</div>
          <div style="color: red">1+2排为长货位,3排为短货位</div>
          <div style="color: red">1个格子=12个货位最多可放12托</div>
          <div>说明</div>
          <div v-for="item in infoMsg" :key="item.bgcolor">
            <div class="infoMsg" :style="{ 'background-color': item.bgcolor }">
@@ -175,19 +200,23 @@
    },
    getStatusText(status) {
      const statusMap = {
        0: "空货位",
        0: "空闲",
        1: "指定入库",
        2: "有货",
        3: "有货",
        4: "执行中",
        6: "执行中",
        7: "执行中",
        99: "空托",
        3: "满货",
        4: "入库中",
        5: "指定出库",
        6: "出库中",
        7: "移库中",
        99: "空托盘",
      };
      return statusMap[status] || "未知状态";
    },
    getEnableStatusText(status) {
      const enableMap = {
        1: "正常",
        0: "正常",
        1: "只入",
        2: "只出",
        3: "禁用",
      };
      return enableMap[status] || "未知";
@@ -221,7 +250,7 @@
        _this.scList = _this.slectData[0].tunnel;
        _this.layers = _this.slectData[0].layers;
      });
      this.GetViewData();
    this.GetViewData();
  },
  components: { ElButton },
};
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue
@@ -86,13 +86,13 @@
    ]);
    const searchFormFields = ref({
      locationCode: "",
      roadwayNo: "",
      locationStatus: "",
      enableStatus:"",
      row:"",
      column:"",
      layer:"",
    });
    const searchFormOptions = ref([
      [
        { title: "货位编号", field: "locationCode", type: "like" },
        { title: "巷道编号", field: "roadwayNo" },
      ],
      [
        {
          title: "货位状态",
@@ -108,6 +108,12 @@
          dataKey: "enableStatusEnum",
          data: [],
        },
        { title: "货位编号", field: "locationCode", type: "like" },
      ],
      [
        { title: "排", field: "row" },
        { title: "列", field: "column" },
        { title: "层", field: "layer" },
      ],
    ]);
    const columns = ref([
@@ -138,7 +144,7 @@
        type: "string",
        width: 180,
        align: "left",
        sort:"true"
        sort: "true",
      },
      {
        field: "locationName",
@@ -165,8 +171,8 @@
      {
        field: "column",
        title: "货位列",
        type: "int",
        width: 120,
        type: "string",
        width: 90,
        align: "left",
        hidden: true,
      },
@@ -174,7 +180,7 @@
        field: "layer",
        title: "货位层",
        type: "string",
        width: 200,
        width: 90,
        align: "left",
        hidden: true,
      },
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/07cf7dda-5295-4f4b-9336-422d595dd357.vsidx
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/16426757-c6c6-4c42-8fe9-b49ddad3b19b.vsidx
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/698e115f-10a6-4d66-9c6c-0a7e0aa6fd18.vsidx
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/a9f62c67-e5cb-4109-8694-4cec2518ac56.vsidx
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.futdcache.v2
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.suo
Binary files differ
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Base/LocationInfoService.cs
@@ -44,6 +44,10 @@
        {
            return base.DeleteData(keys);
        }
        public override PageGridData<Dt_LocationInfo> GetPageData(PageDataOptions options)
        {
            return base.GetPageData(options);
        }
        /// <summary>
        /// ä¿®æ”¹è´§ä½çš„禁用状态
        /// </summary>
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseModels/PageDataOptions.cs
@@ -53,7 +53,6 @@
                {
                    continue;
                }
                PropertyInfo? property = entityProperties.Where(c => c.Name.ToUpper() == searchParametersList[i].Name.ToUpper()).FirstOrDefault();
                if (property == null) continue;
@@ -69,6 +68,10 @@
                    {
                        where += "(";
                    }
                    if (searchParametersList[i].Name == "column")
                    {
                        searchParametersList[i].Name = '"' + searchParametersList[i].Name + '"';
                    }
                    LinqExpressionType expressionType = searchParametersList[i].DisplayType.GetLinqCondition();
                    if (expressionType == LinqExpressionType.Equal)
                    {
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfo.cs
@@ -15,7 +15,7 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("dddddddddddddddddddddddddddddddddddd")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+bb56b2b6f21acb7c69c02585e5bc534d2f67715f")]
[assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.0")]
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfoInputs.cache
@@ -1 +1 @@
264e59f6345328726b244104627f6ef423db410c687b2b588086157df0b522f6
6a5a1a613e5ce705ac78a78ad4180f84711ae6580dcc758191701da06f92caac
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Log/È«¾ÖÒì³£´íÎóÈÕÖ¾_1740314366.log
@@ -131,3 +131,883 @@
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:11:52|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:11:53|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:11:55|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:11:59|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:12:04|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:08|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:08|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:12|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:13|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:15|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:21|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:24|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:25|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:43|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:44|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:46|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:49|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:13:49|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:14|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:14|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:17|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:20|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:39|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:39|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:14:43|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:16:43|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:16:44|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:16:47|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:17:52|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:17:52|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:17:55|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:17:57|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method939(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:19:14|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:19:27|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:19:28|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:24:33|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:24:54|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:25:31|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:25:33|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:28:13|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:28:13|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:29:24|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:29:25|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
--------------------------------
2025/4/3 17:46:02|
Exception has been thrown by the target of an invocation.
【自定义错误】:Exception has been thrown by the target of an invocation.
【异常类型】:TargetInvocationException
【异常信息】:Exception has been thrown by the target of an invocation.
【堆栈调用】:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Span`1& arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at WIDESEA_Core.BaseController.ApiBaseController`2.InvokeService(String methodName, Object[] parameters) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 114
   at WIDESEA_Core.BaseController.ApiBaseController`2.GetPageData(PageDataOptions options) in E:\项目集\ChuanSuoCheKu\项目代码\WMS\WIDESEA_WMSServer\WIDESEA_Core\BaseController\ApiBaseController.cs:line 28
   at lambda_method733(Closure , Object , Object[] )
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
--- End of stack trace from previous location ---
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)