29 lines
546 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|