Files
Pilot_KD_Parino_yuyubo/Gatedge.K3.Pilot.PlugIn/Models/Entity_Link.cs
liangjunyu 8211169549 1
2025-12-18 05:54:25 +08:00

29 lines
546 B
C#

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; }
}
}