搭建基础接口,新增采购入库单、采购订单接口

This commit is contained in:
2025-12-04 11:51:13 +08:00
parent 32fc5d0e20
commit 41edc294f1
13 changed files with 228 additions and 286 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3Cloud.Utils.Model.K3Request
{
public class BaseRequest
{
public int Version { get; set; } = 7;
}
}