在 MmMaterialController.cs 中新增 MmMaterialCategoryController,实现物料分类列表查询接口。IMmMaterialService 接口增加 GetMmMaterialCategoryList 方法声明。DOAN.Service.csproj 新增接口文件夹引用。同时优化了 using 引用顺序。为后续物料分类功能扩展提供支持。
23 lines
670 B
XML
23 lines
670 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1591</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NPOI" Version="2.7.2" />
|
|
<PackageReference Include="QuestPDF" Version="2024.12.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DOAN.ServiceCore\DOAN.ServiceCore.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="BZFM\IBZFMService\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|