服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-09 4891d952819dd5c2efd727385a5f8178ac640d22
更改查询表并添加新编译项

在 `U9C_MES.cs` 文件中,将查询的表从 `mes_MaterialBarCode` 更改为 `mes_MaterialBarCodeByBin`。
在 `Tiger.Model.Net.csproj` 文件中,添加了两个新的编译项:
* `Entitys\MES\YadaU9\mes_MaterialBarCodeByBin.cs`
* `Entitys\MES\YadaU9\mes_WhLotCodeQtyInfo.cs`
已修改2个文件
4 ■■■ 文件已修改
Tiger.Business.MES/iERP/U9C_MES.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Model.Net/Tiger.Model.Net.csproj 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Business.MES/iERP/U9C_MES.cs
@@ -703,7 +703,7 @@
            DbClient db = Biz.DataSource["YadaU9C"].Client;
            try
            {
                var list = db.Queryable<mes_MaterialBarCode>().Where("ModifiedOn > @startTime And ModifiedOn < @endTime", new { startTime = input.startTime, endTime = input.endTime }).ToList();
                var list = db.Queryable<mes_MaterialBarCodeByBin>().Where("ModifiedOn > @startTime And ModifiedOn < @endTime", new { startTime = input.startTime, endTime = input.endTime }).ToList();
            }
            catch (Exception ex)
            {
Tiger.Model.Net/Tiger.Model.Net.csproj
@@ -88,7 +88,9 @@
    <Compile Include="Entitys\BAS\BAS_ITEM_DOC.cs" />
    <Compile Include="Entitys\MES\YadaU9\mes_Bin.cs" />
    <Compile Include="Entitys\MES\YadaU9\mes_MaterialBarCode.cs" />
    <Compile Include="Entitys\MES\YadaU9\mes_MaterialBarCodeByBin.cs" />
    <Compile Include="Entitys\MES\YadaU9\mes_Wh.cs" />
    <Compile Include="Entitys\MES\YadaU9\mes_WhLotCodeQtyInfo.cs" />
    <Compile Include="Entitys\MQTTEntity.cs" />
    <Compile Include="Entitys\Api\Base.cs" />
    <Compile Include="Entitys\Automate\SNInfo.cs" />