Files
Pilot_KD_Parino_yuyubo/Gatedge.K3.Pilot.PlugIn/Models/POPush.cs

17 lines
320 B
C#
Raw Normal View History

2025-12-12 14:46:03 +08:00
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; }
}
}