天大药业

This commit is contained in:
PastSaid
2024-01-02 10:44:59 +08:00
parent 876ebdd603
commit a8689c9ba0
20 changed files with 701 additions and 358 deletions

View File

@@ -0,0 +1,23 @@
using Kingdee.BOS.Core.List;
using Kingdee.BOS.Orm.DataEntity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace K3CExttensionMethods
{
public static class ListHeaderExtension
{
public static ListHeader SetHeader(this ListHeader thiObj, Func<ListHeader, ListHeader> func)
{
return func(thiObj);
}
public static ListHeader SetWidth(this ListHeader thiObj,int width)
{
thiObj.Width = width;
return thiObj;
}
}
}