2024-01-02 10:44:59 +08:00
|
|
|
|
using Kingdee.BOS.Core.List;
|
|
|
|
|
|
using Kingdee.BOS.Orm.DataEntity;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
2024-03-04 16:50:20 +08:00
|
|
|
|
using System.Linq.Expressions;
|
2024-01-02 10:44:59 +08:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace K3CExttensionMethods
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class ListHeaderExtension
|
|
|
|
|
|
{
|
2024-03-04 16:50:20 +08:00
|
|
|
|
public static ListHeader SetHeader(this ListHeader thiObj, Action<ListHeader> _action)
|
2024-01-02 10:44:59 +08:00
|
|
|
|
{
|
2024-03-04 16:50:20 +08:00
|
|
|
|
_action(thiObj);
|
2024-01-02 10:44:59 +08:00
|
|
|
|
|
|
|
|
|
|
return thiObj;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|