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,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NoPackageMachine
{
public class SonMachine
{
public int RowNum { get; set; }
public string PMaterialCode { get; set; }
public string MaterialCode { get; set; }
public string FModel { get; set; }
public decimal Qty { get; set; }
}
}