This commit is contained in:
liangjunyu
2025-12-18 05:54:25 +08:00
parent 7ef9e4587e
commit 8211169549
5 changed files with 189 additions and 13 deletions

View File

@@ -0,0 +1,28 @@
using Kingdee.K3.Core.SCM;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3.Pilot.PlugIn.Models
{
public class Entity_Link
{
public int EntryId { get; set; }
public int LinkId { get; set; }
public int STableId { get; set; }
public int SBillId { get; set; }
public int SId { get; set; }
public string STableName { get; set; }
public decimal BaseUnitQty { get; set; }
}
}