This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace Gatedge.ScanCode.Models.K3Request.BaseData
{
/// <summary>
/// 生产订单镜像模型
/// </summary>
public class MoEntry
{
/// <summary>
/// 分录Id
/// </summary>
public int? FEntryId { get; set; }
/// <summary>
/// 编码
/// </summary>
public string? FNumber { get; set; }
}
}