mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 08:10:51 +08:00
15 lines
308 B
C#
15 lines
308 B
C#
|
|
using Yi.Framework.CodeGun.Domain.Entities;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.CodeGun.Domain.Handlers
|
|||
|
|
{
|
|||
|
|
public class TemplateHandlerBase
|
|||
|
|
{
|
|||
|
|
protected TableAggregateRoot Table { get; set; }
|
|||
|
|
|
|||
|
|
public void SetTable(TableAggregateRoot table)
|
|||
|
|
{
|
|||
|
|
Table = table;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|