新增:

1.客户价格管理
2.销售订单表单插件取值
This commit is contained in:
liangjunyu
2025-11-18 14:50:08 +08:00
parent 61b915d793
commit 4dd2091dee
74 changed files with 694 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using Kingdee.BOS;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3.Pilot.PlugIn.Services.DBService
{
public class BaseDAL
{
public Context Context { get; private set; }
public BaseDAL(Context context)
{
this.Context = context;
}
}
}