This commit is contained in:
2025-08-27 19:26:53 +08:00
parent 9979f006e0
commit 2066763c90
44 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NoPackageMachine
{
public class SalOrderEntryModel
{
public int FID { get; set; }
public int Id { get; set; }
public int MaterialId_Id { get; set; }
}
}