This commit is contained in:
liangjunyu
2025-12-12 14:46:03 +08:00
parent 5ad8d87250
commit 14affa9131
8 changed files with 853 additions and 99 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3.Pilot.PlugIn.Models
{
public class POPush
{
public int Id { get; set; }
public int entryId { get; set; }
public decimal qty { get; set; }
}
}